From: W. Trevor King Date: Wed, 6 Feb 2013 22:03:23 +0000 (-0500) Subject: quizzes/git: Avoid escaped double-quotes when single-quotes will do X-Git-Tag: v0.1~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=797ecd256a927ca410893bc20011d93df1db4a97;p=quizzer.git quizzes/git: Avoid escaped double-quotes when single-quotes will do --- diff --git a/quizzes/git.json b/quizzes/git.json index 1ecdc1f..c10a62a 100644 --- a/quizzes/git.json +++ b/quizzes/git.json @@ -93,7 +93,7 @@ "timeout": null, "answer": [ "git add README", - "git commit -m \"Add a README\"" + "git commit -m 'Add a README'" ], "setup": [ "export GIT_AUTHOR_NAME='A U Thor'",