Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MattEdwardsWaggleBee committed Aug 30, 2024
2 parents 0378ba9 + 61389a7 commit 936ab55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Hyperbee.AsyncExpressions/AwaitExpression.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Linq.Expressions;
using System.Linq.Expressions;
using System.Reflection;

namespace Hyperbee.AsyncExpressions;
Expand Down Expand Up @@ -75,6 +75,6 @@ public static partial class AsyncExpression
{
public static AwaitExpression Await(Expression expression, bool configureAwait)
{
return new AwaitExpression(expression, configureAwait);
return new AwaitExpression( expression, configureAwait );
}
}

0 comments on commit 936ab55

Please sign in to comment.