Skip to content

Commit aedf34a

Browse files
authored
Merge pull request #93 from yshrsmz/fix-typo
fix typo in cli option description
2 parents a22ac40 + bb256cb commit aedf34a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ $ tsfmt --help
1717
--no-editorconfig don't read a .editorconfig
1818
--no-vscode don't read a .vscode/settings.json
1919
--no-tsfmt don't read a tsfmt.json
20-
--useTsconfig <path> using specified config file insteaf of tsconfig.json
21-
--useTslint <path> using specified config file insteaf of tslint.json
22-
--useTsfmt <path> using specified config file insteaf of tsfmt.json
20+
--useTsconfig <path> using specified config file instead of tsconfig.json
21+
--useTslint <path> using specified config file instead of tslint.json
22+
--useTsfmt <path> using specified config file instead of tsfmt.json
2323
--verbose makes output more verbose
2424
```
2525

lib/cli.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ let root = commandpost
4747
.option("--no-editorconfig", "don't read a .editorconfig")
4848
.option("--no-vscode", "don't read a .vscode/settings.json")
4949
.option("--no-tsfmt", "don't read a tsfmt.json")
50-
.option("--useTsconfig <path>", "using specified config file insteaf of tsconfig.json")
51-
.option("--useTslint <path>", "using specified config file insteaf of tslint.json")
52-
.option("--useTsfmt <path>", "using specified config file insteaf of tsfmt.json")
50+
.option("--useTsconfig <path>", "using specified config file instead of tsconfig.json")
51+
.option("--useTslint <path>", "using specified config file instead of tslint.json")
52+
.option("--useTsfmt <path>", "using specified config file instead of tsfmt.json")
5353
.option("--verbose", "makes output more verbose")
5454
.option("-v, --version", "output the version number")
5555
.action((opts, args) => {

0 commit comments

Comments
 (0)