Skip to content

Commit

Permalink
Removed extra curly brace
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMichaelis authored and BenjaminMichaelis committed Sep 20, 2023
1 parent 8c0ca7e commit 2a1056d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ static public void ExpressionsCanHaveReturnTypes()
{
#if !NET6_0_OR_GREATER
Action action = void () => { };
var func = short?(long number) => number <= short.MaxValue ? (short)number : null;
}
var func = short?(long number) =>
number <= short.MaxValue ? (short)number : null;
#endif
}
}

0 comments on commit 2a1056d

Please sign in to comment.