Skip to content

Commit ba862df

Browse files
Fix example
1 parent d4802cb commit ba862df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ let m = map { for x in 1..100 -> x, x * x }
172172
> Equivalent to
173173
>
174174
> ```fsharp
175-
> let m = Map.ofSeq {1..100}
175+
> let m = Map.ofSeq (seq { for x in 1..100 -> x, x * x })
176176
> ```
177177
>
178178
> or

0 commit comments

Comments
 (0)