From 38316cec0b65ca5c294feb136435f37af6b059c1 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Wed, 3 Jun 2026 06:08:35 +0200 Subject: [PATCH] Expr.adoc: typo on $# var --- doc/Expr.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Expr.adoc b/doc/Expr.adoc index bbfd53f..0682a96 100644 --- a/doc/Expr.adoc +++ b/doc/Expr.adoc @@ -1888,7 +1888,7 @@ At each iteration, the following automatic variables are available for use in th * `$_`: the current element of the iterator. * `$__`: the index of the current element in the iterator, starting from 0. -* `$_#`: the number of elements already visited in the iterator, starting from 0. +* `$#`: the number of elements already visited in the iterator, starting from 0. ---