Skip to content

Commit

Permalink
fix: README
Browse files Browse the repository at this point in the history
  • Loading branch information
wsantosdev committed Mar 30, 2024
1 parent 26050c9 commit c7e82aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ if(option.IsNone)
Example 2 - Creating an Option explicitly:
```c#
public Option<int> ReturnWhenGreaterThanZero(int input) =>
input > 0 ? input : Option<int>.None;
input > 0 ? input : Option.None<T>;
```

### ValueOption
Expand Down

0 comments on commit c7e82aa

Please sign in to comment.