From 373970dd3498282266648545870b12f19f9899c8 Mon Sep 17 00:00:00 2001 From: Claudio Russo Date: Mon, 19 Feb 2024 11:21:56 +0000 Subject: [PATCH] doc: fix typos in language-manual --- doc/md/language-manual.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/md/language-manual.md b/doc/md/language-manual.md index 3a47fc0772f..a0ec1014614 100644 --- a/doc/md/language-manual.md +++ b/doc/md/language-manual.md @@ -2305,7 +2305,7 @@ If `` in `label (: )? ` is a looping construct: the body, ``, of the loop is implicitly enclosed in `label (…​)` allowing early continuation of the loop by the evaluation of expression `continue `. -`` is fresh identifier that can only be referenced by `continue ` (through its implicit expansion to `break `). +`` is a fresh identifier that can only be referenced by `continue ` (through its implicit expansion to `break `). ### Break @@ -2317,7 +2317,7 @@ The expression `break ` has type `None` provided: - `` has type `T`. -The evaluation of `break ` evaluates exp to some result `r`. If `r` is `trap`, the result is `trap`. If `r` is a value `v`, the evaluation abandons the current computation up to dynamically enclosing declaration `label …​` using the value `v` as the result of that labelled expression. +The evaluation of `break ` evaluates `` to some result `r`. If `r` is `trap`, the result is `trap`. If `r` is a value `v`, the evaluation abandons the current computation up to the dynamically enclosing declaration `label …​` using the value `v` as the result of that labelled expression. ### Continue