Browse Source

closes https://github.com/ratfactor/ziglings/pull/311

Chris Boesch 2 years ago
parent
commit
80c92e3c94
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/016_for2.zig

+ 1 - 1
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;