Skip to content

Commit

Permalink
Fix: some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Jan 2, 2025
1 parent 0484106 commit 9e2f1b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/cli/clean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::Result;

/// Clean build artifacts.
///
/// Simlpy runs `cargo clean`
/// Simply runs `cargo clean`
#[derive(Clone, Debug, Parser)]
pub(crate) struct Clean {}

Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/dioxus_crate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ impl DioxusCrate {
for path in self.default_ignore_list() {
ignore_builder
.add_line(None, path)
.expect("failed to add path to file excluder");
.expect("failed to add path to file excluded");
}

ignore_builder.build().unwrap()
Expand Down Expand Up @@ -490,7 +490,7 @@ impl DioxusCrate {
for path in self.default_ignore_list() {
ignore_builder
.add_line(None, path)
.expect("failed to add path to file excluder");
.expect("failed to add path to file excluded");
}
ignore_builder.build().unwrap()
}
Expand Down

0 comments on commit 9e2f1b4

Please sign in to comment.