From 78a8f3b7ea249de3953b300ec87563bc5cd50aa2 Mon Sep 17 00:00:00 2001 From: Lucas Date: Sat, 6 Apr 2019 07:41:40 -0300 Subject: [PATCH] Fixed message of schemaPath cli by adding a dot and a uppercase A and readm.me to reflect changes --- README.md | 2 +- packages/graphql-language-service/src/cli.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c85e18a..3dd1eb6c 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/packages/graphql-language-service/src/cli.js b/packages/graphql-language-service/src/cli.js index 2771dc6b..aec02ed0 100644 --- a/packages/graphql-language-service/src/cli.js +++ b/packages/graphql-language-service/src/cli.js @@ -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', });