diff options
Diffstat (limited to 'doc/manual/stmts.txt')
-rw-r--r-- | doc/manual/stmts.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index 721b5cff8..14d272cee 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. |