Ex 22 spelling error

I never make mistakes with apostrophes'es', so I dont' know what happened here.
This commit is contained in:
Dave Gauer 2021-02-10 09:35:16 -05:00 committed by GitHub
parent 6a7153eafb
commit f1f56fd829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
// What happens if getText() can't find 'foo.txt'? How do we express
// this in Zig?
//
// Zig let's us make what's called an "error union" which is a value
// Zig lets us make what's called an "error union" which is a value
// which could either be a regular value OR an error from a set:
//
// var text: MyErrorSet!Text = getText('foo.txt');