From 26934b0c1ae2522a32c970103ab670f17536b8d1 Mon Sep 17 00:00:00 2001 From: Lixou <82600264+DasLixou@users.noreply.github.com> Date: Wed, 4 Dec 2024 14:27:20 +0100 Subject: [PATCH] Fix range in doc comments --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 7a842ef..dfc5775 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,7 @@ impl Parse for AllTuples { /// Helper macro to generate tuple pyramids. Useful to generate scaffolding to work around Rust /// lacking variadics. Invoking `all_tuples!(impl_foo, start, end, P, Q, ..)` -/// invokes `impl_foo` providing ident tuples through arity `start..=end`. +/// invokes `impl_foo` providing ident tuples through arity `start..end`. /// If you require the length of the tuple, see [`all_tuples_with_size!`]. /// /// # Examples @@ -268,7 +268,7 @@ pub fn all_tuples_enumerated(input: TokenStream) -> TokenStream { /// Helper macro to generate tuple pyramids with their length. Useful to generate scaffolding to /// work around Rust lacking variadics. Invoking `all_tuples_with_size!(impl_foo, start, end, P, Q, ..)` -/// invokes `impl_foo` providing ident tuples through arity `start..=end` preceded by their length. +/// invokes `impl_foo` providing ident tuples through arity `start..end` preceded by their length. /// If you don't require the length of the tuple, see [`all_tuples!`]. /// /// # Examples