Skip to content

Commit ef7103b

Browse files
correction comment
1 parent 8694090 commit ef7103b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ impl Executor {
952952
}
953953
}
954954

955-
// remove item
955+
// Remove item
956956
"rm" => {
957957
let name = self.pop_stack().get_string();
958958
if Path::new(name.as_str()).is_dir() {
@@ -964,7 +964,7 @@ impl Executor {
964964
}
965965
}
966966

967-
// rename item
967+
// Rename item
968968
"rename" => {
969969
let to = self.pop_stack().get_string();
970970
let from = self.pop_stack().get_string();

0 commit comments

Comments
 (0)