From e8c01bdba94a82f2b41544540b4956b149c17a72 Mon Sep 17 00:00:00 2001 From: Kononnable Date: Thu, 8 Aug 2019 21:57:29 +0200 Subject: [PATCH] docs change --- README.md | 7 +++---- src/index.ts | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index baafc71..0945288 100644 --- a/README.md +++ b/README.md @@ -43,10 +43,9 @@ Options: [default: "mssql"] -o, --output Where to place generated models [default: "Z:\Repos\typeorm-model-generator\output"] - -s, --schema Schema name to create model from. Only for mssql and - postgres. Specify multiple schemas at once by providing - a comma separated list. - eg: -s scheme1, scheme2, scheme3 + -s, --schema Schema name to create model from. Only for mssql + and postgres. You can pass multiple values + separted by comma eg. -s scheme1,scheme2,scheme3 --ssl [boolean] [default: false] --noConfig Doesn't create tsconfig.json and ormconfig.json [boolean] [default: false] diff --git a/src/index.ts b/src/index.ts index a87cb02..af4bee5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -102,7 +102,7 @@ function GetUtilParametersByArgs() { .option("s", { alias: "schema", describe: - "Schema name to create model from. Only for mssql and postgres. You can pass multiple values separted by comma." + "Schema name to create model from. Only for mssql and postgres. You can pass multiple values separted by comma eg. -s scheme1,scheme2,scheme3" }) .option("ssl", { boolean: true,