summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2023-06-23 14:02:02 -0400
committerGitHub <noreply@github.com>2023-06-23 14:02:02 -0400
commit36c02f73724de83618bf79431f589b391a32522d (patch)
treef32550da2e15e47ad60761748ce6e2bcdfb219e9 /docs
parentb3a883d2c873a39e1ece232de78ea6b43b493f0c (diff)
Update 03-convenience-features.md
Diffstat (limited to 'docs')
-rw-r--r--docs/user-guide/03-convenience-features.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user-guide/03-convenience-features.md b/docs/user-guide/03-convenience-features.md
index 09e15c205..970fb64d3 100644
--- a/docs/user-guide/03-convenience-features.md
+++ b/docs/user-guide/03-convenience-features.md
@@ -375,14 +375,14 @@ Multi-level break
Slang allows `break` statements with a label to jump into any ancestor control flow break points, and not just the immediate parent.
Example:
```
-outter:
+outer:
for (int i = 0; i < 5; i++)
{
inner:
for (int j = 0; j < 10; j++)
{
if (someCondition)
- break outter;
+ break outer;
}
}
```