about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2021-10-23 00:49:54 +0200
committerMel <einebeere@gmail.com>2021-10-23 00:49:54 +0200
commitda14afd74e1659af6ce4553360ac5dd0ce933db8 (patch)
tree1a40d2182637d078db9e074a48cc4e3b355d865e /src/main.rs
parent39b065b7b3c82218f7be5876f563b5d74ea75ee3 (diff)
downloadrabbithole-da14afd74e1659af6ce4553360ac5dd0ce933db8.tar.zst
rabbithole-da14afd74e1659af6ce4553360ac5dd0ce933db8.zip
Fix clippy warnings
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e4dfc4f..9128cdb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -33,7 +33,7 @@ fn file(filename: impl AsRef<Path>) {
 }
 
 fn repl() {
-    const PROMPT: &'static str = "🐇: ";
+    const PROMPT: &str = "🐇: ";
 
     let mut walker = Walker::new();