From cf08680709a67362539a867f927ac2c02b43fcd1 Mon Sep 17 00:00:00 2001 From: Basheer Subei <6508762+bsubei@users.noreply.github.com> Date: Sat, 24 Feb 2024 19:23:13 -0500 Subject: [PATCH] minor update to multizip documentation The docs for `multizip()` refer to it as a macro, even though it's a function. I'm guessing this typo originated from the copy-paste from `izip!()`, which has a similar section noting the result. --- src/ziptuple.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ziptuple.rs b/src/ziptuple.rs index e299c4013..03bf1ad65 100644 --- a/src/ziptuple.rs +++ b/src/ziptuple.rs @@ -16,7 +16,7 @@ pub struct Zip { /// The iterator element type is a tuple like like `(A, B, ..., E)` where `A` to `E` are the /// element types of the subiterator. /// -/// **Note:** The result of this macro is a value of a named type (`Zip<(I, J, +/// **Note:** The result of this function is a value of a named type (`Zip<(I, J, /// ..)>` of each component iterator `I, J, ...`) if each component iterator is /// nameable. ///