Skip to content

Commit

Permalink
Merge pull request #2188 from Alex-451/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdavid committed Dec 8, 2022
2 parents 4382ff4 + 98bb5bd commit 60223bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LiteDB/Client/Database/LiteDatabase.cs
Expand Up @@ -89,7 +89,7 @@ public LiteDatabase(ILiteEngine engine, BsonMapper mapper = null, bool disposeOn
#region Collections

/// <summary>
/// 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.
/// </summary>
/// <param name="name">Collection name (case insensitive)</param>
/// <param name="autoId">Define autoId data type (when object contains no id field)</param>
Expand All @@ -115,7 +115,7 @@ public ILiteCollection<T> GetCollection<T>(BsonAutoId autoId)
}

/// <summary>
/// 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.
/// </summary>
/// <param name="name">Collection name (case insensitive)</param>
/// <param name="autoId">Define autoId data type (when document contains no _id field)</param>
Expand Down

0 comments on commit 60223bd

Please sign in to comment.