From: W. Trevor King Date: Wed, 6 Feb 2013 18:02:40 +0000 (-0500) Subject: quizzes: Convert multi-line help to lists X-Git-Tag: v0.1~22 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b12d81e16feba0b71499351168f0231f7ecd3394;p=quizzer.git quizzes: Convert multi-line help to lists --- diff --git a/quizzes/git.json b/quizzes/git.json index 1a80cb4..4beed3b 100644 --- a/quizzes/git.json +++ b/quizzes/git.json @@ -98,7 +98,10 @@ "git ls-files", "git status" ], - "help": "http://www.kernel.org/pub/software/scm/git/docs/git-add.html\nhttp://www.kernel.org/pub/software/scm/git/docs/git-commit.html", + "help": [ + "http://www.kernel.org/pub/software/scm/git/docs/git-add.html", + "http://www.kernel.org/pub/software/scm/git/docs/git-commit.html" + ], "tags": [ "add", "commit" diff --git a/quizzes/posix-utilities.json b/quizzes/posix-utilities.json index 800fec5..1cb4f92 100644 --- a/quizzes/posix-utilities.json +++ b/quizzes/posix-utilities.json @@ -49,7 +49,10 @@ "setup": [ "echo 'This project is wonderful' > README" ], - "help": "The README file is in your current directory.\nhttp://pubs.opengroup.org/onlinepubs/009696699/idx/utilities.html", + "help": [ + "The README file is in your current directory.", + "http://pubs.opengroup.org/onlinepubs/009696699/idx/utilities.html" + ], "dependencies": [ "list all the files in the current directory" ]