Fix Tuukka print example (#1304)

It was missing quotes around "Tuukka". Output from hy to confirm everything's good:

```clojure
hy unknown using CPython(default) 3.6.1 on Linux
=> (print "Hello there," "Tuukka")
Hello there, Tuukka
```
This commit is contained in:
Tristram Oaten 2017-06-12 14:36:47 +01:00 committed by Ryan Gonzalez
parent abb75453cc
commit fc3dd8ab66

View File

@ -562,7 +562,7 @@ we used "Tuukka" as parameter):
.. code-block:: clj
(print "Hello there," Tuukka)
(print "Hello there," "Tuukka")
We can also manipulate code with macros: