From 678a235fb108041a8a8532f011e2eeb85f1ff4e1 Mon Sep 17 00:00:00 2001 From: Hadrian Tang Date: Thu, 3 Mar 2022 18:00:41 +0800 Subject: [PATCH] Fixed typo --- docs/Formatting-Elmish-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Formatting-Elmish-code.md b/docs/Formatting-Elmish-code.md index 2fe5056ce0..cc885efa97 100644 --- a/docs/Formatting-Elmish-code.md +++ b/docs/Formatting-Elmish-code.md @@ -91,6 +91,6 @@ When the children argument is empty, it is placed right after the attributes. ```fsharp let x = - div [ OnClick(fun _ -> prinftn "meh") + div [ OnClick(fun _ -> printfn "meh") ClassName "container" ] [] ```