summaryrefslogtreecommitdiffstats
path: root/src/commands/new_directory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/new_directory.rs')
-rw-r--r--src/commands/new_directory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/new_directory.rs b/src/commands/new_directory.rs
index 35a3b18..2ff5701 100644
--- a/src/commands/new_directory.rs
+++ b/src/commands/new_directory.rs
@@ -30,7 +30,7 @@ impl std::fmt::Display for NewDirectory {
impl JoshutoRunnable for NewDirectory {
fn execute(&self, context: &mut JoshutoContext) {
let (term_rows, term_cols) = ui::getmaxyx();
- const PROMPT: &'static str = ":mkdir ";
+ const PROMPT: &str = ":mkdir ";
let user_input: Option<String>;