Skip to content

Commit 8dd9180

Browse files
committed
Try() - minor consistency improvements
1 parent 671374d commit 8dd9180

File tree

1 file changed

+1
-1
lines changed
  • CSharpFunctionalExtensions/Result/Methods

1 file changed

+1
-1
lines changed

CSharpFunctionalExtensions/Result/Methods/Try.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static async Task<Result<T>> Try<T>(Func<Task<T>> func, Func<Exception, s
4444

4545
try
4646
{
47-
var result = await func().ConfigureAwait(Result.DefaultConfigureAwait);
47+
var result = await func().ConfigureAwait(DefaultConfigureAwait);
4848
return Ok(result);
4949
}
5050
catch (Exception exc)

0 commit comments

Comments
 (0)