@@ -7,13 +7,13 @@ public static partial class AsyncResultExtensionsRightOperand
77 {
88 /// <summary>
99 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
10- /// If a given function throws an exception, an error is returned from the given (or default) error handler
10+ /// If a given function throws an exception, an error is returned from the given error handler
1111 /// </summary>
1212 /// <typeparam name="T">Result Type parameter</typeparam>
1313 /// <typeparam name="K"><paramref name="func" /> Result Type parameter</typeparam>
1414 /// <typeparam name="E">Error Type parameter</typeparam>
1515 /// <param name="result">Extended result</param>
16- /// <param name="func">Function returning result to to bind</param>
16+ /// <param name="func">Function returning result to bind</param>
1717 /// <param name="errorHandler">Error handling function</param>
1818 /// <returns>Binding result</returns>
1919 public static async Task < Result < K , E > > BindTry < T , K , E > ( this Result < T , E > result , Func < T , Task < Result < K , E > > > func ,
@@ -26,12 +26,12 @@ public static async Task<Result<K, E>> BindTry<T, K, E>(this Result<T, E> result
2626
2727 /// <summary>
2828 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
29- /// If a given function throws an exception, an error is returned from the given (or default) error handler
29+ /// If a given function throws an exception, an error is returned from the given error handler
3030 /// </summary>
3131 /// <typeparam name="T">Result Type parameter</typeparam>
3232 /// <typeparam name="K"><paramref name="func" /> Result Type parameter</typeparam>
3333 /// <param name="result">Extended result</param>
34- /// <param name="func">Function returning result to to bind</param>
34+ /// <param name="func">Function returning result to bind</param>
3535 /// <param name="errorHandler">Error handling function</param>
3636 /// <returns>Binding result</returns>
3737 public static async Task < Result < K > > BindTry < T , K > ( this Result < T > result , Func < T , Task < Result < K > > > func ,
@@ -44,11 +44,11 @@ public static async Task<Result<K>> BindTry<T, K>(this Result<T> result, Func<T,
4444
4545 /// <summary>
4646 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
47- /// If a given function throws an exception, an error is returned from the given (or default) error handler
47+ /// If a given function throws an exception, an error is returned from the given error handler
4848 /// </summary>
4949 /// <typeparam name="K"><paramref name="func" /> Result Type parameter</typeparam>
5050 /// <param name="result">Extended result</param>
51- /// <param name="func">Function returning result to to bind</param>
51+ /// <param name="func">Function returning result to bind</param>
5252 /// <param name="errorHandler">Error handling function</param>
5353 /// <returns>Binding result</returns>
5454 public static async Task < Result < K > > BindTry < K > ( this Result result , Func < Task < Result < K > > > func ,
@@ -61,11 +61,11 @@ public static async Task<Result<K>> BindTry<K>(this Result result, Func<Task<Res
6161
6262 /// <summary>
6363 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
64- /// If a given function throws an exception, an error is returned from the given (or default) error handler
64+ /// If a given function throws an exception, an error is returned from the given error handler
6565 /// </summary>
6666 /// <typeparam name="T">Result Type parameter</typeparam>
6767 /// <param name="result">Extended result</param>
68- /// <param name="func">Function returning result to to bind</param>
68+ /// <param name="func">Function returning result to bind</param>
6969 /// <param name="errorHandler">Error handling function</param>
7070 /// <returns>Binding result</returns>
7171 public static async Task < Result > BindTry < T > ( this Result < T > result , Func < T , Task < Result > > func ,
@@ -78,10 +78,10 @@ public static async Task<Result> BindTry<T>(this Result<T> result, Func<T, Task<
7878
7979 /// <summary>
8080 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
81- /// If a given function throws an exception, an error is returned from the given (or default) error handler
81+ /// If a given function throws an exception, an error is returned from the given error handler
8282 /// </summary>
8383 /// <param name="result">Extended result</param>
84- /// <param name="func">Function returning result to to bind</param>
84+ /// <param name="func">Function returning result to bind</param>
8585 /// <param name="errorHandler">Error handling function</param>
8686 /// <returns>Binding result</returns>
8787 public static async Task < Result > BindTry ( this Result result , Func < Task < Result > > func ,
@@ -94,11 +94,11 @@ public static async Task<Result> BindTry(this Result result, Func<Task<Result>>
9494
9595 /// <summary>
9696 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
97- /// If a given function throws an exception, an error is returned from the given (or default) error handler
97+ /// If a given function throws an exception, an error is returned from the given error handler
9898 /// </summary>
9999 /// <typeparam name="E">Error Type parameter</typeparam>
100100 /// <param name="result">Extended result</param>
101- /// <param name="func">Function returning result to to bind</param>
101+ /// <param name="func">Function returning result to bind</param>
102102 /// <param name="errorHandler">Error handling function</param>
103103 /// <returns>Binding result</returns>
104104 public static async Task < UnitResult < E > > BindTry < E > ( this UnitResult < E > result , Func < Task < UnitResult < E > > > func ,
@@ -111,12 +111,12 @@ public static async Task<UnitResult<E>> BindTry<E>(this UnitResult<E> result, Fu
111111
112112 /// <summary>
113113 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
114- /// If a given function throws an exception, an error is returned from the given (or default) error handler
114+ /// If a given function throws an exception, an error is returned from the given error handler
115115 /// </summary>
116116 /// <typeparam name="T">Result Type parameter</typeparam>
117117 /// <typeparam name="E">Error Type parameter</typeparam>
118118 /// <param name="result">Extended result</param>
119- /// <param name="func">Function returning result to to bind</param>
119+ /// <param name="func">Function returning result to bind</param>
120120 /// <param name="errorHandler">Error handling function</param>
121121 /// <returns>Binding result</returns>
122122 public static async Task < Result < T , E > > BindTry < T , E > ( this UnitResult < E > result , Func < Task < Result < T , E > > > func ,
@@ -129,12 +129,12 @@ public static async Task<Result<T, E>> BindTry<T, E>(this UnitResult<E> result,
129129
130130 /// <summary>
131131 /// Selects result from the return value of a given function. If the calling Result is a failure, a new failure result is returned instead.
132- /// If a given function throws an exception, an error is returned from the given (or default) error handler
132+ /// If a given function throws an exception, an error is returned from the given error handler
133133 /// </summary>
134134 /// <typeparam name="T">Result Type parameter</typeparam>
135135 /// <typeparam name="E">Error Type parameter</typeparam>
136136 /// <param name="result">Extended result</param>
137- /// <param name="func">Function returning result to to bind</param>
137+ /// <param name="func">Function returning result to bind</param>
138138 /// <param name="errorHandler">Error handling function</param>
139139 /// <returns>Binding result</returns>
140140 public static async Task < UnitResult < E > > BindTry < T , E > ( this Result < T , E > result , Func < T , Task < UnitResult < E > > > func ,
0 commit comments