From 751fd2e15b8afabc8f45db22568f45d63b61d07c Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Mon, 4 Oct 2021 08:55:00 +0300 Subject: [PATCH] Split the sentence before if and otherwise --- docs/sophia_features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sophia_features.md b/docs/sophia_features.md index 246ac14..266626d 100644 --- a/docs/sophia_features.md +++ b/docs/sophia_features.md @@ -485,8 +485,8 @@ function g(p : int * option(int)) : int = ``` Guards are boolean expressions that can be used on patterns in both switch -statements and functions definitions, if a guard expression evalutaes to -`true`, then the corresponding body will be used, otherwise, the next pattern +statements and functions definitions. If a guard expression evalutaes to +`true`, then the corresponding body will be used. Otherwise, the next pattern will be checked: ```sophia