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.
This commit is contained in:
Jack Hooper 2014-01-20 14:29:57 +11:00
parent 8447a9dfdb
commit ca40113e37
1 changed files with 1 additions and 1 deletions

View File

@ -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):