Skip to content

Commit

Permalink
revise: fixes issues identified by typos
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Jan 15, 2025
1 parent ae332c7 commit 25db4db
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[default.extend-identifiers]
# these identifiers are used during testing specifically for catching
# incorrectly cased words and should be ignored.
baR = "baR"
bAZ = "bAZ"
4 changes: 2 additions & 2 deletions crates/ecc-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use clap::Subcommand;
pub mod ecc;
pub mod ontology;

/// A tool for building and deploy the Encyclopedia of Composable Characterstics
/// (ECC) and associated ontologies.
/// A tool for building and deploy the Encyclopedia of Composable
/// Characteristics (ECC) and associated ontologies.
#[derive(Parser)]
pub struct Args {
/// The command to run.
Expand Down
2 changes: 1 addition & 1 deletion crates/ecc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ impl Characteristic {
}
}

/// Gets the adoption date (if it the charactertistic has been adopted).
/// Gets the adoption date (if it the characteristic has been adopted).
pub fn adoption_date(&self) -> Option<&DateTime<Utc>> {
match self {
Characteristic::Draft { .. }
Expand Down

0 comments on commit 25db4db

Please sign in to comment.