Skip to content

Commit

Permalink
Fix an example in the prompt for codegen (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettimus authored Oct 23, 2024
1 parent a82be2f commit 18176f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honc-code-gen/src/lib/ai/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const [user] = await db.select().from(schema.users).where(eq(schema.users.id, "s
import {{ gte }} from "drizzle-orm";
// ...
const [user] = await db.select().from(schema.users).where(gte(schema.users.age, 64));
const olderUsers = await db.select().from(schema.users).where(gte(schema.users.age, 64));
// ...
</drizzle-orm-example>
Expand Down

0 comments on commit 18176f5

Please sign in to comment.