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