From 8d07686d79d803f463e357e2d0dce404317eb993 Mon Sep 17 00:00:00 2001 From: CaptnCodr Date: Sat, 2 Nov 2019 13:41:03 +0100 Subject: [PATCH] Fix copy paste error. --- docs/content/index.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/index.fsx b/docs/content/index.fsx index 11444f3e..e3a80d34 100644 --- a/docs/content/index.fsx +++ b/docs/content/index.fsx @@ -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.