Browse Source

03 assignment - var to const in example for clarity

Dave Gauer 4 years ago
parent
commit
5d44734cfe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/03_assignment.zig

+ 1 - 1
exercises/03_assignment.zig

@@ -15,7 +15,7 @@
 //          bar CAN be negative and can hold −128 to 127
 //
 //     const foo: u8 = 20;
-//     var bar: i8 = -20;
+//     const bar: i8 = -20;
 //
 // Example: foo can hold 8 bits (0 to 255)
 //          bar can hold 16 bits (0 to 65,535)