From 05ec79fffcc91f451759785c1bde1c73c9a3cc2d Mon Sep 17 00:00:00 2001 From: Stefan 'psYchotic' Zwanenburg Date: Wed, 28 Oct 2009 21:05:03 +0100 Subject: [PATCH] Sorted the output of the "help" command. --- help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.c b/help.c index f75b794..f09e606 100644 --- a/help.c +++ b/help.c @@ -3,11 +3,11 @@ int help(sqlite3 *db, MArray tokens) { printf("Available commands:\n"); + printf(" del deletes a single todo\n"); printf(" help prints this help\n"); printf(" list lists all the todos\n"); printf(" quit exits the program\n"); printf(" show shows a single todo\n"); - printf(" del deletes a single todo\n"); return 0; } -- 2.11.4.GIT