Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.
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
2 changes: 1 addition & 1 deletion src/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ pub trait Decoder {
/// Read an associative container (map).
///
/// * `f` is a function that will be passed the number of entries in the
/// map, and will call `emit_map_elt_key` and `emit_map_elt_val` to decode
/// map, and will call `read_map_elt_key` and `read_map_elt_val` to decode
/// each entry.
fn read_map<T, F>(&mut self, f: F) -> Result<T, Self::Error>
where F: FnOnce(&mut Self, usize) -> Result<T, Self::Error>;
Expand Down