Skip to content

Commit

Permalink
docs: fix typo (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktym4a authored Feb 13, 2024
1 parent fe763dd commit 9e11c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/content/docs/core/define-options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default defineIntegration({
// ...
options: defineOptions<Options>({ foo: undefined }),
setup({ options: inputOptions }) {
const options = optionsSchema.parse(inputOptions);
const options = OptionsSchema.parse(inputOptions);

return {}
}
Expand Down

0 comments on commit 9e11c69

Please sign in to comment.