Skip to content

Commit

Permalink
Fix copy paste error.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnCodr authored Nov 2, 2019
1 parent 3125423 commit 8d07686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/index.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ anObj |> should not' (be sameAs otherObj)
[1..10] |> should be (supersetOf [3;6;9])
[1..10] |> should not' (be supersetOf [5;11;21])

[3;6;9] |> should be (supersetOf [1..10])
[5;11;21] |> should not' (be supersetOf [1..10])
[3;6;9] |> should be (subsetOf [1..10])
[5;11;21] |> should not' (be subsetOf [1..10])

(**
The ofCase operator allows you to check the case of a union.
Expand Down

0 comments on commit 8d07686

Please sign in to comment.