Skip to content

Commit

Permalink
Merge pull request #5 from DasLixou/patch-1
Browse files Browse the repository at this point in the history
Fix range in doc comments
  • Loading branch information
BenjaminBrienen authored Dec 4, 2024
2 parents ead8d19 + 26934b0 commit fa76bbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit fa76bbc

Please sign in to comment.