summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-10-27 10:03:32 +0200
committerGitHub <[email protected]>2021-10-27 10:03:32 +0200
commit7d2fe0a5232b8deef52ec2e786c9dac999ef2234 (patch)
treecb7749eba2ffb88a3a67cb00be05f3aa102efb4a
parent28d53d6649be611dbde120ab76936204daa449b7 (diff)
downloadSTC-modified-7d2fe0a5232b8deef52ec2e786c9dac999ef2234.tar.gz
STC-modified-7d2fe0a5232b8deef52ec2e786c9dac999ef2234.zip
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ee6869df..b7da6a25 100644
--- a/README.md
+++ b/README.md
@@ -191,7 +191,7 @@ int main(void) {
}
}
```
-**Note**: Do ***not*** `return`/`goto` from inside a `c_auto*`-block. Instead, do `continue`, which will jump out of the block, and `return` after the block.
+**Note**: Do ***not*** `return` from inside a `c_auto*`-block. Instead, first `continue`, which will jump out of the block, then call `return` after the block.
Output
```