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 11babbf commit 21a6893
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
################################################
# This is where corrections to source files go #
################################################

[default.extend-identifiers]
# these identifiers are used during testing specifically for catching
# incorrectly cased words and should be ignored.
baR = "baR"
bAZ = "bAZ"

##############################################
# This is where corrections to YAML files go #
##############################################

[default.extend-words]
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 21a6893

Please sign in to comment.