From c1bae7c045b55e9ec190b69e4c34a88ff3f6770c Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 21 Mar 2025 19:51:16 +0100 Subject: [PATCH] Update doc comment --- crates/fj-interop/src/ext.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/fj-interop/src/ext.rs b/crates/fj-interop/src/ext.rs index 5562bb9d1..f9976ed25 100644 --- a/crates/fj-interop/src/ext.rs +++ b/crates/fj-interop/src/ext.rs @@ -11,7 +11,8 @@ pub trait ArrayExt { /// Stable replacement for `zip` /// - /// + /// There used to be an unstable version of this, but it was removed: + /// fn zip_ext(self, rhs: [U; N]) -> [(T, U); N]; }