We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8694090 commit ef7103bCopy full SHA for ef7103b
src/main.rs
@@ -952,7 +952,7 @@ impl Executor {
952
}
953
954
955
- // remove item
+ // Remove item
956
"rm" => {
957
let name = self.pop_stack().get_string();
958
if Path::new(name.as_str()).is_dir() {
@@ -964,7 +964,7 @@ impl Executor {
964
965
966
967
- // rename item
+ // Rename item
968
"rename" => {
969
let to = self.pop_stack().get_string();
970
let from = self.pop_stack().get_string();
0 commit comments