aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2021-09-03 16:49:39 -0400
committerGitHub <[email protected]>2021-09-03 16:49:39 -0400
commit424f3e95f9d44c50ea830635f6cd1970a57fac47 (patch)
treee48983dca59ac2cc9d2940903a9915f490fa9fe3
parent15827c1df3448824496ca7c03ad9613b46505dcf (diff)
parentaf3fabd59be602a216ca45228e7a5e4c7eb720d9 (diff)
downloadziglings-424f3e95f9d44c50ea830635f6cd1970a57fac47.tar.xz
ziglings-424f3e95f9d44c50ea830635f6cd1970a57fac47.zip
Merge pull request #71 from franciscod/patch-1
fix typo in 076 (sentinal -> sentinel)
-rw-r--r--exercises/076_sentinels.zig2
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.