From 2f365c155196554e3939ddefee9eb5c882da92bf Mon Sep 17 00:00:00 2001 From: Thomas Frans Date: Thu, 5 Oct 2023 18:32:30 +0200 Subject: [PATCH] chore: remove placeholder code Remove the placeholder entries from the command aliases. --- src/command.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/command.rs b/src/command.rs index a704eb7..77d0f5f 100644 --- a/src/command.rs +++ b/src/command.rs @@ -303,9 +303,6 @@ lazy_static! { ); register_aliases(&mut m, "repeat", vec!["loop"]); - m.insert("1", "foo"); - m.insert("2", "bar"); - m.insert("3", "baz"); m }; }