diff --git a/src/execute.ts b/src/execute.ts index 3ec729142..4b518648a 100644 --- a/src/execute.ts +++ b/src/execute.ts @@ -13,7 +13,7 @@ import {settings} from './settings' * @example For ESM dev.js * ``` * #!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning - * import { execute } from "@oclif/core" + * import { execute } from '@oclif/core' * * await execute({development: true, dir: import.meta.url}) * ``` @@ -21,7 +21,7 @@ import {settings} from './settings' * @example For ESM run.js * ``` * #!/usr/bin/env node - * import { execute } from "@oclif/core" + * import { execute } from '@oclif/core' * * await execute({dir: import.meta.url}) * ```