From 4810daef9f8bbe680b0f42af0021a19cadff2fec Mon Sep 17 00:00:00 2001 From: Nate Kelley <133379588+nate-kelley-buster@users.noreply.github.com> Date: Sat, 12 Jul 2025 16:33:53 -0600 Subject: [PATCH] Update packages/server-shared/src/type-utilities/index.ts Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- packages/server-shared/src/type-utilities/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server-shared/src/type-utilities/index.ts b/packages/server-shared/src/type-utilities/index.ts index b9651311c..ab4007bbd 100644 --- a/packages/server-shared/src/type-utilities/index.ts +++ b/packages/server-shared/src/type-utilities/index.ts @@ -1,6 +1,6 @@ /* IsEqual is a type utility that checks if two types are equal. -It's used to ensure that the a database type is equal to the a type. Like when we have a type that is a database type and we want to ensure that it's equal to the schema we have. +It's used to ensure that a database type is equal to a type. Like when we have a type that is a database type and we want to ensure that it's equal to the schema we have. Example: type _DBEqualityCheck = IsEqual; // This will cause a compile error if Organization and organizations.$inferSelect don't match.