From e67904b19faf90e0b68c6108aae3ea785f55cc83 Mon Sep 17 00:00:00 2001 From: Jack McSweeney <46860599+mcsweeneyJA@users.noreply.github.com> Date: Mon, 9 Mar 2020 11:19:33 +1000 Subject: [PATCH] Corrected wording error Docs said 'example shows how to use Map.filter' however it should be Map.find --- docs/conceptual/map.find['key,'t]-function-[fsharp].md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conceptual/map.find['key,'t]-function-[fsharp].md b/docs/conceptual/map.find['key,'t]-function-[fsharp].md index da78f7d7..5fe958e4 100644 --- a/docs/conceptual/map.find['key,'t]-function-[fsharp].md +++ b/docs/conceptual/map.find['key,'t]-function-[fsharp].md @@ -58,7 +58,7 @@ This function is named `Find` in compiled assemblies. If you are accessing the f ## Example -The following examples shows how to use Map.filter. +The following examples shows how to use Map.find. [!code-fsharp[Main](snippets/fsmaps/snippet6.fs)]