~tieong/ziglings

af3fabd59be602a216ca45228e7a5e4c7eb720d9 — Francisco Demartino 3 years ago 15827c1
fix typo in 076 (sentinal -> sentinel)
1 files changed, 1 insertions(+), 1 deletions(-)

M exercises/076_sentinels.zig
M exercises/076_sentinels.zig => exercises/076_sentinels.zig +1 -1
@@ 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.