From 28dd1a2a2a09837e11d9b8ce38483744b1c715a6 Mon Sep 17 00:00:00 2001 From: Parker Ziegler Date: Thu, 10 May 2018 02:45:08 -0700 Subject: [PATCH] Fix if-else typo in docs. (#365) --- docs/if-else.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/if-else.md b/docs/if-else.md index 744be5bd3f..1fd13916b9 100644 --- a/docs/if-else.md +++ b/docs/if-else.md @@ -12,7 +12,7 @@ let message = if (isMorning) { }; ``` -**Note:** an `if-elseif-else` expression without the final `else` branch implicitly gives `()`. So this: +**Note:** an `if-else` expression without the final `else` branch implicitly gives `()`. So this: ```reason if (showMenu) {