Skip to content

Commit bc8dca4

Browse files
committed
Fixed typo
1 parent 2d525de commit bc8dca4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/DotNext/Optional.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static class Optional
3838

3939
/// <summary>
4040
/// If a value is present, apply the provided mapping function to it, and if the result is
41-
/// non-null, return an Optional describing the result. Otherwise returns <see cref="Optional{T}.None"/>.
41+
/// non-null, return an Optional describing the result. Otherwise, returns <see cref="Optional{T}.None"/>.
4242
/// </summary>
4343
/// <typeparam name="TInput">The type of stored in the Optional container.</typeparam>
4444
/// <typeparam name="TOutput">The type of the result of the mapping function.</typeparam>

src/DotNext/Threading/Tasks/Synchronization.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ public static Result<TResult> GetResult<TResult>(this Task<TResult> task, Cancel
209209
}
210210

211211
/// <summary>
212-
/// Creates a task that will complete when all of the passed tasks have completed.
212+
/// Creates a task that will complete when all the passed tasks have completed.
213213
/// </summary>
214214
/// <typeparam name="T1">The type of the first task.</typeparam>
215215
/// <typeparam name="T2">The type of the second task.</typeparam>
@@ -264,7 +264,7 @@ public static Result<TResult> GetResult<TResult>(this Task<TResult> task, Cancel
264264
}
265265

266266
/// <summary>
267-
/// Creates a task that will complete when all of the passed tasks have completed.
267+
/// Creates a task that will complete when all the passed tasks have completed.
268268
/// </summary>
269269
/// <typeparam name="T1">The type of the first task.</typeparam>
270270
/// <typeparam name="T2">The type of the second task.</typeparam>

0 commit comments

Comments
 (0)