aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2021-02-13 20:36:15 -0500
committerDave Gauer <[email protected]>2021-02-13 20:36:15 -0500
commit96cb465fb855106d92d391e35923478abecd6098 (patch)
tree3224e9428d923d0edfd447e2f371e77e5ae59a98 /exercises
parentee8fbbd65d18706aea420563a3faaf016b026658 (diff)
parent2493e93c378a8a499e66d5629b3a2f84ad12d0f5 (diff)
downloadziglings-96cb465fb855106d92d391e35923478abecd6098.tar.xz
ziglings-96cb465fb855106d92d391e35923478abecd6098.zip
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises')
-rw-r--r--exercises/04_arrays.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/04_arrays.zig b/exercises/04_arrays.zig
index 0f4ffe1..b8eeb9d 100644
--- a/exercises/04_arrays.zig
+++ b/exercises/04_arrays.zig
@@ -11,11 +11,11 @@
//
// Get values of an array using array[index] notation:
//
-// const bar = foo[3]; // 5423
+// const bar = foo[2]; // 5423
//
// Set values of an array using array[index] notation:
//
-// foo[3] = 16;
+// foo[2] = 16;
//
// Get the length of an array using the len property:
//