Skip to content

Commit

Permalink
typo + doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nmandery committed Oct 9, 2023
1 parent ec8cf2f commit 5d105af
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/algorithm/change_resolution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ where
/// change the H3 resolutions of all contained values to `resolution`.
///
/// In case of resolution increases all child indexes will be added, so the returned
/// value may contain more indexes then `self`.
/// value may contain more indexes than `self`.
///
/// Invalid/empty values are omitted.
fn change_resolution(&self, resolution: Resolution) -> Result<Self, Error>;

/// change the H3 resolutions of all contained values to `resolution`.
/// Change the H3 resolutions of all contained values to `resolution`.
///
/// The output list array has the same length as the input array.
/// The output list array has the same length as the input array, positions of the elements
/// in input and output are corresponding to each other.
///
/// Invalid/empty values are preserved as such.
fn change_resolution_list(
Expand Down

0 comments on commit 5d105af

Please sign in to comment.