chore(docs): fix all rustdoc warnings (#54)

This commit is contained in:
2025-12-21 14:11:10 -08:00
committed by GitHub
parent a8a3774c35
commit d50f22a386
9 changed files with 14 additions and 12 deletions

View File

@@ -33,7 +33,7 @@ pub fn compare_versions_optional(a: Option<&str>, b: Option<&str>) -> Ordering {
}
/// Compares two strings using the BLS version comparison specification.
/// See: https://uapi-group.org/specifications/specs/version_format_specification/
/// See: <https://uapi-group.org/specifications/specs/version_format_specification/>
pub fn compare_versions(a: &str, b: &str) -> Ordering {
// Acquire a peekable iterator for each string.
let mut a_chars = a.chars().peekable();