Skip to content

Commit

Permalink
Update ReadMe.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiasnordqvist authored Oct 31, 2024
1 parent 972653f commit d44e50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Results/DotNetThoughts.Results/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ These are all equivalent

var result = Divide(1, 2)
.And(x => Multiply(x, 2))
.And((x, y) => Divide(y, x));
.Bind((x, y) => Divide(y, x));

var result = from x in Divide(1, 2)
from y in Multiply(x, 2)
Expand Down

0 comments on commit d44e50a

Please sign in to comment.