From c8d7c84a6717382ea50771a2e31763907a7419d4 Mon Sep 17 00:00:00 2001 From: habere-et-dispertire Date: Sat, 16 Sep 2023 00:29:21 +0100 Subject: [PATCH] [off-by-one] third => fourth --- essentials/positionals/subscripting-ranges/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials/positionals/subscripting-ranges/index.md b/essentials/positionals/subscripting-ranges/index.md index fed320df0..8ec963098 100644 --- a/essentials/positionals/subscripting-ranges/index.md +++ b/essentials/positionals/subscripting-ranges/index.md @@ -6,7 +6,7 @@ title: Subscripting ranges A `Range` is a positional data type. As with arrays, you can access its individual elements. -For example, this is how you print the third element in the sequence of items that the range generates: +For example, this is how you print the fourth element in the sequence of items that the range generates: ```raku my $r = 10..20;