Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@

- Merge [multiaddr] and [parity-multiaddr] (see [PR 40]).

- Functionality to go from a `u64` to a `multiadddr::Protocol` and back is
- Functionality to go from a `u64` to a `multiaddr::Protocol` and back is
removed. Please open an issue on [multiaddr] in case this is still needed.

- Given that `multiaddr::Protocol` now represents both the protocol
Expand Down
2 changes: 1 addition & 1 deletion src/from_url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn from_url(url: &str) -> std::result::Result<Multiaddr, FromUrlErr> {
/// Attempts to parse an URL into a multiaddress. Ignores possible loss of information.
///
/// This function is similar to [`from_url`], except that we don't return an error if some
/// information in the URL cannot be retain in the generated multiaddres.
/// information in the URL cannot be retain in the generated multiaddress.
///
/// This function is only present if the `url` feature is enabled, and it is
/// enabled by default.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl<'a> Iterator for Iter<'a> {
}
}

/// Iterator over the string idtenfiers of the protocols (not addrs) in a multiaddr
/// Iterator over the string identifiers of the protocols (not addrs) in a multiaddr
pub struct ProtoStackIter<'a> {
parts: Iter<'a>,
}
Expand Down