summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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
```