Skip to content

Commit 44d1d4f

Browse files
committed
update
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 3e8141e commit 44d1d4f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

vortex-edition/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub struct EditionId {
5757

5858
impl EditionId {
5959
/// Create an edition identifier. Validated by [`EditionId::validate`], which
60-
/// [`test_harness::validate_edition`](crate::test_harness::validate_edition) exercises
60+
/// [`test_harness::validate_edition`] exercises
6161
/// per edition in unit tests.
6262
pub const fn new(family: &'static str, year: u16, month: u8, version: u8) -> Self {
6363
Self {
@@ -78,7 +78,7 @@ impl EditionId {
7878
/// Validate the identifier's form: a non-empty lowercase family, a four-digit year,
7979
/// and a month in 01-12. Checked for every declared edition by
8080
/// [`EditionSession::validate`] and per edition by
81-
/// [`test_harness::validate_edition`](crate::test_harness::validate_edition).
81+
/// [`test_harness::validate_edition`].
8282
pub fn validate(&self) -> Result<(), EditionError> {
8383
if self.family.is_empty() || !self.family.chars().all(|c| c.is_ascii_lowercase()) {
8484
return Err(EditionError::new(format!(

vortex/src/editions/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! these declarations that alters a frozen set fails CI. New encodings are staged into the
1717
//! newest draft edition.
1818
//!
19-
//! Note this is currently unsued but a future PR will make this public and gate the writer behind
19+
//! Note this is currently unused but a future PR will make this public and gate the writer behind
2020
//! editions.
2121
2222
pub mod core;

0 commit comments

Comments
 (0)