Skip to content
This repository was archived by the owner on Sep 2, 2020. It is now read-only.

Fixed message of schemaPath cli by adding a dot and a uppercase A and… #352

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Options:
directory, or the current working directory, until a
.graphqlrc is found or the root directory is found.
[string]
-s, --schemaPath a path to schema DSL file
-s, --schemaPath A path to schema DSL file.
[string]

At least one command is required.
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-language-service/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const {argv} = yargs
})
.option('s', {
alias: 'schemaPath',
describe: 'a path to schema DSL file\n',
describe: 'A path to schema DSL file.\n',
type: 'string',
});

Expand Down