begone ye errant space

This commit is contained in:
Dave Gauer 2021-02-14 09:25:19 -05:00
parent a0dede07e8
commit c9739f8000

View file

@ -10,7 +10,7 @@
// 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');
// var text: MyErrorSet!Text = getText('foo.txt');
//
// For now, let's just see if we can try making an error union!
//