From ca40113e37ee5ba16b6cdfe6dca8242b6b9e096f Mon Sep 17 00:00:00 2001 From: Jack Hooper Date: Mon, 20 Jan 2014 14:29:57 +1100 Subject: [PATCH] Corrected --spy cmdoption (I think) For the --spy commmand line option, it currently says '''Print equivalent Hy code...'''. Now, I haven't actually gotten around to installing Hy on my computer yet, so I haven't had a chance to test this out to make sure, but from the looks of the code example, it looks as though it is printing out the equivalent Python code of the executed Hy code, not the other way around. This would certainly make more sense. As such, I have changed the word 'Hy' to 'Python' so that the documentation more accurately reflects what (one assumes) is going on. --- docs/language/cli.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/language/cli.rst b/docs/language/cli.rst index 875efa5..317e233 100644 --- a/docs/language/cli.rst +++ b/docs/language/cli.rst @@ -20,7 +20,7 @@ Command line options .. cmdoption:: --spy - Print equivalent Hy code before executing. For example:: + Print equivalent Python code before executing. For example:: => (defn salutationsnm [name] (print (+ "Hy " name "!"))) def salutationsnm(name):