aboutsummaryrefslogtreecommitdiff
path: root/src/consts.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-06 10:24:54 +0100
committerAkshay <[email protected]>2021-04-06 10:24:54 +0100
commitc84c38544bc6e81f0b0482e4e82b6c95848c1a0c (patch)
tree3ae2f3387ba5ef56a7f7c3304dc029ae7845f175 /src/consts.rs
parent3f5b917c6ced370d940774b51ff89cec0d03c562 (diff)
apply clippy lints
Diffstat (limited to 'src/consts.rs')
-rw-r--r--src/consts.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/consts.rs b/src/consts.rs
index 3f9ecb9..0b43f0a 100644
--- a/src/consts.rs
+++ b/src/consts.rs
@@ -8,6 +8,6 @@ pub mod colors {
8 pub const PINK: Color = Color::RGB(255, 50, 153); 8 pub const PINK: Color = Color::RGB(255, 50, 153);
9} 9}
10 10
11pub const FONT_PATH: &'static str = "./assets/NerdInput-Regular.ttf"; 11pub const FONT_PATH: &str = "./assets/NerdInput-Regular.ttf";
12pub const STDLIB_PATH: &'static str = "./src/lisp/std.lisp"; 12pub const STDLIB_PATH: &str = "./src/lisp/std.lisp";
13pub const RC_PATH: &'static str = "/home/np/.config/sdl-tests"; 13pub const RC_PATH: &str = "/home/np/.config/sdl-tests";