diff --git a/package.json b/package.json index b63f9a6..148dd1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "quick-mongo-super", - "version": "2.0.10", + "version": "2.0.11", "description": "Quick Mongo Super is a light-weight and easy-to-use Node.js module written in TypeScript to work with MongoDB.", "main": "./dist/src/index.js", "types": "./dist/typings/src/index.d.ts", diff --git a/src/structures/errors.ts b/src/structures/errors.ts index 42f2d2a..56ccead 100644 --- a/src/structures/errors.ts +++ b/src/structures/errors.ts @@ -4,7 +4,7 @@ import { typeOf } from '../lib/utils/functions/typeOf.function' export const errors = { CONNECTION_NOT_ESTABLISHED: 'Failed to connect to MongoDB. Please double-check the specified ' + - 'the connection URI and make sure that you\'re performing the ' + + 'connection URI and make sure that you\'re performing the ' + 'database connection using the `QuickMongoClient.connect()` method.', CONNECTION_URI_NOT_SPECIFIED: 'The MongoDB connection URI must be specified.', INVALID_CONNECTION_URI: 'The specified MongoDB connection URI is invalid.',