# HG changeset patch # User Franz Glasner # Date 1724952261 -7200 # Node ID 6403f9166b20df2a89d2f34846d7c8fc8829c618 # Parent 0f5b4e8388a4e5d441484e45fc0117623edba82e Docs diff -r 0f5b4e8388a4 -r 6403f9166b20 share/local-bsdtools/array.sh --- a/share/local-bsdtools/array.sh Thu Aug 29 19:10:31 2024 +0200 +++ b/share/local-bsdtools/array.sh Thu Aug 29 19:24:21 2024 +0200 @@ -17,7 +17,7 @@ #: #: Is implements one-dimensional array with one-base indexing. #: -#: Implementation hints: +#: Hints and rules: #: #: - Every array has a NAME #: - One-based indexing is used @@ -26,7 +26,7 @@ #: - An array name must conform to shell variable naming conventions #: - Currently the number of of elements of an array must be >= 0 #: - An unset __ variable is a severe error and forces an immediate -#: error ``exit`` +#: error ``exit``. Exceptions to this rule are documented. #: