From df80147b095bf2628dcc60bed25eabd5fc337f9c Mon Sep 17 00:00:00 2001 From: Max Coplan Date: Fri, 15 May 2020 21:09:07 -0400 Subject: [PATCH] docs: fix grammar for ormconfig error (#6001) Trying to match line 54 --- src/connection/ConnectionOptionsReader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection/ConnectionOptionsReader.ts b/src/connection/ConnectionOptionsReader.ts index bfd22951832..f5dc6a8d724 100644 --- a/src/connection/ConnectionOptionsReader.ts +++ b/src/connection/ConnectionOptionsReader.ts @@ -38,7 +38,7 @@ export class ConnectionOptionsReader { async all(): Promise { const options = await this.load(); if (!options) - throw new Error(`No connection options were found in any of configurations file.`); + throw new Error(`No connection options were found in any orm configuration files.`); return options; }