From 330c6216b6731f7c6df9acb814ea7bd324caf9e2 Mon Sep 17 00:00:00 2001 From: Kononnable Date: Sun, 17 Jun 2018 21:32:50 +0200 Subject: [PATCH] readme fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4bae33..3ccb0bc 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,6 @@ Options: npx typeorm-model-generator -d "Z:\sqlite.db" -e sqlite -o . ```` ## Naming strategy -If you want to generate custom names for properties in generated entities you need to use custom naming strategy. You need to create your own version of [NamingStrategy](https://github.com/Kononnable/typeorm-model-generator/blob/master/src/NamingStrategy.ts) nad pass it as command parameter. +If you want to generate custom names for properties in generated entities you need to use custom naming strategy. You need to create your own version of [NamingStrategy](https://github.com/Kononnable/typeorm-model-generator/blob/master/src/NamingStrategy.ts) and pass it as command parameter. ```typeorm-model-generator -d typeorm_mg --namingStrategy=./NamingStrategy -e sqlite -db /tmp/sqliteto.db```