diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-05-09 20:01:16 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-05-09 20:01:16 -0400 |
commit | 86e071f25607817a6a507956b1f759e5d13be5df (patch) | |
tree | 6adb7e75a182294063b9c055bdc6e241cf269250 /exercises | |
parent | 273b980a9a662d77f5dcdc5bd95b88dc4ce5c3db (diff) | |
download | ziglings-86e071f25607817a6a507956b1f759e5d13be5df.tar.gz ziglings-86e071f25607817a6a507956b1f759e5d13be5df.tar.bz2 ziglings-86e071f25607817a6a507956b1f759e5d13be5df.tar.xz ziglings-86e071f25607817a6a507956b1f759e5d13be5df.zip |
076 typo
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/076_sentinels.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/076_sentinels.zig b/exercises/076_sentinels.zig index 476f03f..cf8253e 100644 --- a/exercises/076_sentinels.zig +++ b/exercises/076_sentinels.zig @@ -36,7 +36,7 @@ // that with regular many-item pointers!). // // Important: the sentinel value must be of the same type as the -// data being termined! +// data being terminated! // const print = @import("std").debug.print; |