From f0eb46f2e8b313ce2abe304daa0bcdf7a23826f5 Mon Sep 17 00:00:00 2001 From: Wesley Kerfoot Date: Thu, 23 Aug 2012 20:12:50 -0400 Subject: [PATCH] changed remove to rm --- command_parser.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command_parser.rkt b/command_parser.rkt index 69951ff..f416888 100644 --- a/command_parser.rkt +++ b/command_parser.rkt @@ -28,7 +28,7 @@ [(list-rest "cmds" xs) (add-commands "cmds" xs)] [(list-rest "add" xs) (add-resources "add" (list (string-join xs "")))] [(list-rest "chdir" xs) (chdir "chdir" xs)] - [(list-rest "remove" xs) (remove-command "rem" xs)] + [(list-rest "rm" xs) (remove-command "rem" xs)] [_ (command #f)])] [_ (command #f)]))