diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ccommon_api.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ccommon_api.md b/docs/ccommon_api.md index eb7918b9..27bbf589 100644 --- a/docs/ccommon_api.md +++ b/docs/ccommon_api.md @@ -50,11 +50,11 @@ c_foreach (i, csset_x, it, csset_x_end(&set)) printf(" %d", *i.ref); ``` ### c_with, c_withbuffer, c_breakwith -General defer in block mechanics. **c_withbuffer** is special for buffers, uses stack memory if buf is up to 256 bytes, +General ***defer*** mechanics. **c_withbuffer** is special for buffers, uses stack memory if buf is up to 256 bytes, and heap memory otherwise. -***NB***: Use only **c_breakwith** to break out of the block if needed, never use **return**, **break**, -or **goto** inside a with-block. +***NB***: Use ***only*** **c_breakwith** to break out of the block if needed, ***never*** use `return`, `break`, +or `goto` inside a **c_with**-block. | Usage | Description | |:-------------------------------|:-------------------------------------| |
