From 70689cf937f6e8831a4b8e9f2ae1dd2d2a200a5d Mon Sep 17 00:00:00 2001 From: Daira-Emma Hopwood Date: Tue, 18 Feb 2025 21:52:25 +0000 Subject: [PATCH] Doc clarification --- components/zcash_address/src/kind/unified.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/zcash_address/src/kind/unified.rs b/components/zcash_address/src/kind/unified.rs index 11a733b7a..79861fe80 100644 --- a/components/zcash_address/src/kind/unified.rs +++ b/components/zcash_address/src/kind/unified.rs @@ -456,6 +456,8 @@ pub trait Item: SealedItem { /// Returns the opaque typed encoding of this item. /// /// This is the same encoding used internally by [`Encoding::encode`]. + /// This API is for advanced usage; in most cases you should not depend + /// on the typed encoding of items. fn typed_encoding(&self) -> Vec { let mut ret = vec![]; self.write_raw_encoding(&mut ret);