Fix parameter name of all_tuples's document (#13896)

# Objective

I got little confused by the document of `all_tuples!` because type
names of the parameter `T` and extracted names `Pn` are difference.

## Solution

I fixed type names of the document.
This commit is contained in:
long_long_float 2024-06-18 00:17:24 +09:00 committed by GitHub
parent 335dcf96a2
commit 47f58ac6c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,10 +67,10 @@ impl Parse for AllTuples {
///
/// all_tuples!(impl_wrapped_in_foo, 0, 15, T);
/// // impl_wrapped_in_foo!();
/// // impl_wrapped_in_foo!(P0);
/// // impl_wrapped_in_foo!(P0, P1);
/// // impl_wrapped_in_foo!(T0);
/// // impl_wrapped_in_foo!(T0, T1);
/// // ..
/// // impl_wrapped_in_foo!(P0 .. P14);
/// // impl_wrapped_in_foo!(T0 .. T14);
/// ```
/// Multiple parameters.
/// ```