Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typos in LiteDatabase.cs #2188

Merged
merged 1 commit into from Dec 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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