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 cd8f3992..ee6869df 100644
--- a/README.md
+++ b/README.md
@@ -191,7 +191,7 @@ int main(void) {
}
}
```
-**Note**: Do ***not*** call `return`/`goto` inside a `c_auto*`-block. Instead, call `continue`, which will jump out of the block, and call `return` after the block.
+**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.
Output
```