Skip to content

Commit

Permalink
fix(dtt): 🐛 changed label of examples for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Dec 5, 2023
1 parent a5d988a commit cd1eafe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/dtt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub fn main() {

// Example of how to use the `is_valid_day` function
println!(
"🦀 Invalid day (32): ❌ {}",
"🦀 Valid day (32): ❌ {}",
DateTime::is_valid_day("32")
);
println!(
Expand All @@ -39,7 +39,7 @@ pub fn main() {

// Example of how to use the `is_valid_hour` function
println!(
"🦀 Invalid hour (24): ❌ {}",
"🦀 Valid hour (24): ❌ {}",
DateTime::is_valid_hour("24")
);
println!(
Expand Down

0 comments on commit cd1eafe

Please sign in to comment.