diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-02-11 14:13:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 14:13:15 -0500 |
commit | 0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6 (patch) | |
tree | b2a663ed4c4fec485cd6231cc261b59a6206b07d /exercises | |
parent | bb5c219daec42be742e81f726ebdcfae4219e084 (diff) | |
parent | ec49fd1cc8e06b56c84d334307e3a6af326d22fe (diff) | |
download | ziglings-0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6.tar.gz ziglings-0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6.tar.bz2 ziglings-0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6.tar.xz ziglings-0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6.zip |
Merge pull request #7 from palash25/typo
exercise/21: fix typo
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/21_errors.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/21_errors.zig b/exercises/21_errors.zig index 34c5e18..7714c4b 100644 --- a/exercises/21_errors.zig +++ b/exercises/21_errors.zig @@ -1,5 +1,5 @@ // -// Believe it or not, sometimes things to wrong in programs. +// Believe it or not, sometimes things go wrong in programs. // // In Zig, an error is a value. Errors are named so we can identify // things that can go wrong. Errors are created in "error sets", which |