Skip to content

Commit

Permalink
chore(errors): fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowplay1 committed Mar 30, 2024
1 parent 9de8e68 commit 1737aac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/structures/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand Down

0 comments on commit 1737aac

Please sign in to comment.