Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mbdavid/LiteDB
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdavid committed Dec 8, 2022
2 parents 32d9eb8 + 60223bd commit 3f2d261
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LiteDB/Client/Database/LiteDatabase.cs
Original file line number Diff line number Diff line change
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 3f2d261

Please sign in to comment.