From 676f0218ba39426a61af6e32b2f776d7252f62ee Mon Sep 17 00:00:00 2001 From: Flamenco Date: Wed, 5 Jul 2023 15:58:01 -0400 Subject: [PATCH] Update lib.rs Mention that range specifier is inclusive --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a1a9792..2405f11 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -151,7 +151,7 @@ //! ### Repeat ranges //! //! The repeat operators `*` and `**` can be followed by an optional range specification of the -//! form `` (exact), `` (min), `<,m>` (max) or `` (range), where `n` and `m` are either +//! form `` (exact), `` (min-inclusive), `<,m>` (max-inclusive) or `` (range-inclusive), where `n` and `m` are either //! integers, or a Rust `usize` expression enclosed in `{}`. //! //! ### Precedence climbing