Skip to content

Commit

Permalink
chore: fix grammar (#543)
Browse files Browse the repository at this point in the history
  • Loading branch information
iiio2 authored Nov 14, 2024
1 parent e5c76eb commit 17ac916
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/esbuild.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Options } from './types'
import unplugin from '.'

// TODO: some upstream lib failed generate invalid dts, remove the any in the future
// TODO: some upstream lib failed to generate invalid dts, remove the any in the future
export default unplugin.esbuild as (options?: Options) => any
2 changes: 1 addition & 1 deletion src/rollup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Options } from './types'
import unplugin from '.'

// TODO: some upstream lib failed generate invalid dts, remove the any in the future
// TODO: some upstream lib failed to generate invalid dts, remove the any in the future
export default unplugin.rollup as (options?: Options) => any
2 changes: 1 addition & 1 deletion src/rspack.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Options } from './types'
import unplugin from '.'

// TODO: some upstream lib failed generate invalid dts, remove the any in the future
// TODO: some upstream lib failed to generate invalid dts, remove the any in the future
export default unplugin.rspack as (options?: Options) => any
2 changes: 1 addition & 1 deletion src/vite.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Options } from './types'
import unplugin from '.'

// TODO: some upstream lib failed generate invalid dts, remove the any in the future
// TODO: some upstream lib failed to generate invalid dts, remove the any in the future
export default unplugin.vite as (options?: Options) => any
2 changes: 1 addition & 1 deletion src/webpack.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Options } from './types'
import unplugin from '.'

// TODO: some upstream lib failed generate invalid dts, remove the any in the future
// TODO: some upstream lib failed to generate invalid dts, remove the any in the future
export default unplugin.webpack as (options?: Options) => any

0 comments on commit 17ac916

Please sign in to comment.