We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85c1a07 commit 1e1b70aCopy full SHA for 1e1b70a
episodes/03-ranges-arrays.md
@@ -81,8 +81,10 @@ different from languages like Python where this does not happen.
81
82
## Indexing elements
83
84
-We can retrieve and reset specific values of an array using `[]` notation. Let's try retrieving and setting a
85
-specific value in our example so far:
+We can retrieve and reset specific values of an array using `[]` notation. Note that we use the same square
+bracket notation in two different contexts: (1) to declare an array, with the square brackets containing the
86
+array's full index range `[example_range]`, and (2) to access specific array elements, as we will see
87
+below. Let's try retrieving and setting a specific value in our example so far:
88
89
```chpl
90
var example_range = 0..10;
0 commit comments