Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/descriptor/key_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ use super::Descriptor;
use super::{DescriptorKeyParseError, DescriptorPublicKey, DescriptorSecretKey};
use crate::prelude::{btree_map, BTreeMap};

/// Alias type for a map of public key to secret key.
/// A structure mapping [`DescriptorPublicKey`] to [`DescriptorSecretKey`].
///
/// This map is returned whenever a descriptor that contains secrets is parsed using
/// It's returned whenever a descriptor that contains secrets is parsed using
/// [`Descriptor::parse_descriptor`], since the descriptor will always only contain
/// public keys. This map allows looking up the corresponding secret key given a
/// public key from the descriptor.
Expand Down
Loading