From 23064bba3a711d3f6bddfb8568c0d1732acdffb2 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Mon, 26 Mar 2018 00:48:39 -0700 Subject: [PATCH] fix small typo in the documentation (#7411) --- doc/manual/stmts.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index 721b5cff81..14d272cee0 100644 --- a/doc/manual/stmts.txt +++ b/doc/manual/stmts.txt @@ -145,7 +145,7 @@ the variable has been initialized and does not rely on syntactic properties: x = a() else: x = a() - use x + # use x let statement @@ -296,7 +296,7 @@ empty ``discard`` statement should be used. For non ordinal types it is not possible to list every possible value and so these always require an ``else`` part. -As case statements perform compile-time exhaustiveness checks, the value in +As case statements perform compile-time exhaustiveness checks, the value in every ``of`` branch must be known at compile time. This fact is also exploited to generate more performant code.