From 98bb5bd6dec3b33a6f5955ec10f949947306b8d5 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 17 May 2022 18:13:41 +0200 Subject: [PATCH] Fixed typos in LiteDatabase.cs --- LiteDB/Client/Database/LiteDatabase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)