diff options
| author | Chris Boesch <[email protected]> | 2023-06-09 17:25:10 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-06-09 17:25:10 +0200 |
| commit | 80c92e3c945040ca8c441e6afd13962c71c75266 (patch) | |
| tree | 6217df9da6dfd220842aa701f66cd864fc9f02bf /exercises | |
| parent | 947d1e4fbb6697bb853e29d1e8e1cf14b0e38a85 (diff) | |
| download | ziglings-80c92e3c945040ca8c441e6afd13962c71c75266.tar.xz ziglings-80c92e3c945040ca8c441e6afd13962c71c75266.zip | |
closes https://github.com/ratfactor/ziglings/pull/311
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/016_for2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/016_for2.zig b/exercises/016_for2.zig index ea1e6ca..6fbdb2a 100644 --- a/exercises/016_for2.zig +++ b/exercises/016_for2.zig @@ -17,7 +17,7 @@ const std = @import("std"); pub fn main() void { // Let's store the bits of binary number 1101 in - // 'little-endian' order (least significant byte first): + // 'little-endian' order (least significant byte or bit first): const bits = [_]u8{ 1, 0, 1, 1 }; var value: u32 = 0; |
