fix typo in 076 (sentinal -> sentinel)

This commit is contained in:
Francisco Demartino 2021-09-03 17:08:43 -03:00 committed by GitHub
parent 79b92d15b8
commit ab5b2abbc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ pub fn main() void {
// So now we have a zero-terminated array and a many-item // So now we have a zero-terminated array and a many-item
// pointer that reference the same data: a sequence of // 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 // Attempting to loop through and print both of these should
// demonstrate how they are similar and different. // demonstrate how they are similar and different.