Skip to content

Commit cb2212b

Browse files
committed
Fixed typo
1 parent 38204ef commit cb2212b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DotNext.IO/IO/Log/IAuditTrail.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async ValueTask WaitForCommitAsync(long index, CancellationToken token = default
4949
/// Commits log entries into the underlying storage and marks these entries as committed.
5050
/// </summary>
5151
/// <remarks>
52-
/// This method should updates cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
52+
/// This method should update cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
5353
/// Additionally, it may force log compaction and squash all committed entries into single entry called snapshot.
5454
/// </remarks>
5555
/// <param name="endIndex">The index of the last entry to commit, inclusively.</param>
@@ -62,7 +62,7 @@ async ValueTask WaitForCommitAsync(long index, CancellationToken token = default
6262
/// Commits log entries into the underlying storage and marks these entries as committed.
6363
/// </summary>
6464
/// <remarks>
65-
/// This method should updates cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
65+
/// This method should update cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
6666
/// Additionally, it may force log compaction and squash all committed entries into single entry called snapshot.
6767
/// </remarks>
6868
/// <param name="token">The token that can be used to cancel the operation.</param>
@@ -94,7 +94,7 @@ Task CreateBackupAsync(Stream output, CancellationToken token = default)
9494
Task InitializeAsync(CancellationToken token = default);
9595

9696
/// <summary>
97-
/// Dropes the uncommitted entries starting from the specified position to the end of the log.
97+
/// Drops the uncommitted entries starting from the specified position to the end of the log.
9898
/// </summary>
9999
/// <param name="startIndex">The index of the first log entry to be dropped.</param>
100100
/// <param name="token">The token that can be used to cancel the operation.</param>
@@ -107,7 +107,7 @@ Task CreateBackupAsync(Stream output, CancellationToken token = default)
107107
/// Gets log entries in the specified range.
108108
/// </summary>
109109
/// <remarks>
110-
/// This method may return less entries than <c>endIndex - startIndex + 1</c>. It may happen if the requested entries are committed entries and squashed into the single entry called snapshot.
110+
/// This method may return fewer entries than <c>endIndex - startIndex + 1</c>. It may happen if the requested entries are committed entries and squashed into the single entry called snapshot.
111111
/// In this case the first entry in the collection is a snapshot entry. Additionally, the caller must call <see cref="IDisposable.Dispose"/> to release resources associated
112112
/// with the audit trail segment with entries.
113113
/// </remarks>

0 commit comments

Comments
 (0)