diff options
author | Francisco Demartino <demartino.francisco@gmail.com> | 2021-09-03 17:08:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-03 17:08:43 -0300 |
commit | ab5b2abbc2eef2945627fa6d713947f329d76d87 (patch) | |
tree | e48983dca59ac2cc9d2940903a9915f490fa9fe3 /exercises | |
parent | 79b92d15b85848f85ea77bfb93018472ce45579c (diff) | |
download | ziglings-ab5b2abbc2eef2945627fa6d713947f329d76d87.tar.gz ziglings-ab5b2abbc2eef2945627fa6d713947f329d76d87.tar.bz2 ziglings-ab5b2abbc2eef2945627fa6d713947f329d76d87.tar.xz ziglings-ab5b2abbc2eef2945627fa6d713947f329d76d87.zip |
fix typo in 076 (sentinal -> sentinel)
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 cf8253e..6d1f6f8 100644 --- a/exercises/076_sentinels.zig +++ b/exercises/076_sentinels.zig @@ -53,7 +53,7 @@ pub fn main() void { // So now we have a zero-terminated array and a many-item // pointer that reference the same data: a sequence of - // numbers that both ends in and CONTAINS the sentinal value. + // numbers that both ends in and CONTAINS the sentinel value. // // Attempting to loop through and print both of these should // demonstrate how they are similar and different. |