Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
rutrum committed Jan 1, 2025
1 parent 0ce32a5 commit afb0b36
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Breaking changes:

* Rename `Case::ScreamingSnake` to `Case::Constant`.
* Add `Case::Sentence` (sentence pattern and space delimiter)
* `Casing` trait implemented for `Arc<str>` and `Rc<str>` again

Other changes:

Expand Down
3 changes: 0 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ build:
watch-build:
watchexec -- "reset && just build"

coverage:
cargo tarpaulin --all-features

doc:
cargo doc --all-features

Expand Down
8 changes: 4 additions & 4 deletions src/case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ pub enum Case {
/// Camel case strings are lowercase, but for every word _except the first_ the
/// first letter is capitalized.
/// * Boundaries: [LowerUpper](Boundary::LowerUpper), [DigitUpper](Boundary::DigitUpper),
/// [UpperDigit](Boundary::UpperDigit), [DigitLower](Boundary::DigitLower),
/// [LowerDigit](Boundary::LowerDigit), [Acronym](Boundary::Acronym)
/// [UpperDigit](Boundary::UpperDigit), [DigitLower](Boundary::DigitLower),
/// [LowerDigit](Boundary::LowerDigit), [Acronym](Boundary::Acronym)
/// * Pattern: [Camel](`Pattern::Camel`)
/// * Delimeter: No delimeter
///
Expand All @@ -103,8 +103,8 @@ pub enum Case {
/// Pascal case strings are lowercase, but for every word the
/// first letter is capitalized.
/// * Boundaries: [LowerUpper](Boundary::LowerUpper), [DigitUpper](Boundary::DigitUpper),
/// [UpperDigit](Boundary::UpperDigit), [DigitLower](Boundary::DigitLower),
/// [LowerDigit](Boundary::LowerDigit), [Acronym](Boundary::Acronym)
/// [UpperDigit](Boundary::UpperDigit), [DigitLower](Boundary::DigitLower),
/// [LowerDigit](Boundary::LowerDigit), [Acronym](Boundary::Acronym)
/// * Pattern: [Capital](`Pattern::Capital`)
/// * Delimeter: No delimeter
///
Expand Down

0 comments on commit afb0b36

Please sign in to comment.