Skip to content

Commit 29197bb

Browse files
sshushliapinrstam
authored andcommitted
Fix typos in the code documentation
1 parent 0be8b6e commit 29197bb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/MongoDB.Driver/DeleteResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ internal static DeleteResult FromCore(BulkWriteResult result)
4343
public abstract long DeletedCount { get; }
4444

4545
/// <summary>
46-
/// Gets a value indicating whether the result is acknowleded.
46+
/// Gets a value indicating whether the result is acknowledged.
4747
/// </summary>
4848
public abstract bool IsAcknowledged { get; }
4949

src/MongoDB.Driver/ReplaceOneResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ internal static ReplaceOneResult FromCore(BulkWriteResult result)
4646

4747
// properties
4848
/// <summary>
49-
/// Gets a value indicating whether the result is acknowleded.
49+
/// Gets a value indicating whether the result is acknowledged.
5050
/// </summary>
5151
public abstract bool IsAcknowledged { get; }
5252

src/MongoDB.Driver/UpdateResult.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ internal static UpdateResult FromCore(BulkWriteResult result)
4646

4747
// properties
4848
/// <summary>
49-
/// Gets a value indicating whether the result is acknowleded.
49+
/// Gets a value indicating whether the result is acknowledged.
5050
/// </summary>
5151
public abstract bool IsAcknowledged { get; }
5252

@@ -83,7 +83,7 @@ protected UpdateResult()
8383

8484
// nested classes
8585
/// <summary>
86-
/// The result of an acknowledgede update operation.
86+
/// The result of an acknowledged update operation.
8787
/// </summary>
8888
public class Acknowledged : UpdateResult
8989
{
@@ -143,7 +143,7 @@ public override BsonValue UpsertedId
143143
}
144144

145145
/// <summary>
146-
/// The result of an acknowledgede update operation.
146+
/// The result of an acknowledged update operation.
147147
/// </summary>
148148
public class Unacknowledged : UpdateResult
149149
{

0 commit comments

Comments
 (0)