Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-alford committed Feb 13, 2023
1 parent 167770d commit b7a524d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/generate-schemables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ export const moduleHeaderComment: (module: string, version: string) => ts.JSDoc
export const instanceComment: (
module: SchemableTypeclasses[0],
version: SchemableTypeclasses[3],
) => ts.JSDoc = (module, verision) =>
) => ts.JSDoc = (module, version) =>
_.createJSDocComment(
`${module === 'Type' ? '@deprecated\n' : ''}@since ${verision}\n@category Instances`,
`${module === 'Type' ? '@deprecated\n' : ''}@since ${version}\n@category Instances`,
)

const makeInstanceTypeExport: (tc: SchemableTypeclasses) => ts.ExportDeclaration = ([
Expand Down

0 comments on commit b7a524d

Please sign in to comment.