diff --git a/LiteDB/Client/Database/LiteDatabase.cs b/LiteDB/Client/Database/LiteDatabase.cs index 96dd0bd2a..d12a3221f 100644 --- a/LiteDB/Client/Database/LiteDatabase.cs +++ b/LiteDB/Client/Database/LiteDatabase.cs @@ -89,7 +89,7 @@ public LiteDatabase(ILiteEngine engine, BsonMapper mapper = null, bool disposeOn #region Collections /// - /// Get a collection using a entity class as strong typed document. If collection does not exits, create a new one. + /// Get a collection using a entity class as strong typed document. If collection does not exist, create a new one. /// /// Collection name (case insensitive) /// Define autoId data type (when object contains no id field) @@ -115,7 +115,7 @@ public ILiteCollection GetCollection(BsonAutoId autoId) } /// - /// Get a collection using a generic BsonDocument. If collection does not exits, create a new one. + /// Get a collection using a generic BsonDocument. If collection does not exist, create a new one. /// /// Collection name (case insensitive) /// Define autoId data type (when document contains no _id field)