Skip to content

Commit 5943fb5

Browse files
authored
docs: typo (#11073)
1 parent 38c5ee4 commit 5943fb5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/pages/getting-started/adapters/drizzle.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ export const verificationTokens = pgTable(
111111
token: text("token").notNull(),
112112
expires: timestamp("expires", { mode: "date" }).notNull(),
113113
},
114-
(verficationToken) => ({
114+
(verificationToken) => ({
115115
compositePk: primaryKey({
116-
columns: [verficationToken.identifier, verficationToken.token],
116+
columns: [verificationToken.identifier, verificationToken.token],
117117
}),
118118
})
119119
)
@@ -220,9 +220,9 @@ export const verificationTokens = mysqlTable(
220220
token: varchar("token", { length: 255 }).notNull(),
221221
expires: timestamp("expires", { mode: "date" }).notNull(),
222222
},
223-
(verficationToken) => ({
223+
(verificationToken) => ({
224224
compositePk: primaryKey({
225-
columns: [verficationToken.identifier, verficationToken.token],
225+
columns: [verificationToken.identifier, verificationToken.token],
226226
}),
227227
})
228228
)
@@ -318,9 +318,9 @@ export const verificationTokens = sqliteTable(
318318
token: text("token").notNull(),
319319
expires: integer("expires", { mode: "timestamp_ms" }).notNull(),
320320
},
321-
(verficationToken) => ({
321+
(verificationToken) => ({
322322
compositePk: primaryKey({
323-
columns: [verficationToken.identifier, verficationToken.token],
323+
columns: [verificationToken.identifier, verificationToken.token],
324324
}),
325325
})
326326
)

0 commit comments

Comments
 (0)