diff options
Diffstat (limited to 'src/content/chapter5_advanced_features/lesson03_panic/text.html')
-rw-r--r-- | src/content/chapter5_advanced_features/lesson03_panic/text.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content/chapter5_advanced_features/lesson03_panic/text.html b/src/content/chapter5_advanced_features/lesson03_panic/text.html index 843a65b..c54c217 100644 --- a/src/content/chapter5_advanced_features/lesson03_panic/text.html +++ b/src/content/chapter5_advanced_features/lesson03_panic/text.html @@ -1,7 +1,7 @@ <p> - The <code>panic</code> keyword is similar to <code>todo</code> keyword, but it - is used to crash the program when the program has reached a point that should - never be reached. + The <code>panic</code> keyword is similar to the <code>todo</code> keyword, + but it is used to crash the program when the program has reached a point that + should never be reached. </p> <p> This keyword should almost never be used! It may be useful in initial |