Merge pull request #1880 from zhaqenl/master

Fix misplaced `#@` tag macro
This commit is contained in:
Kodi Arfer 2020-03-10 22:27:48 -04:00 committed by GitHub
commit 1112472f00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -96,3 +96,4 @@
* Noah Snelson <noah.snelson@protonmail.com>
* Adam Porter <adam@alphapapa.net>
* Gábor Lipták <gliptak@gmail.com>
* Raymund MARTINEZ <zhaqenl@protonmail.com>

View File

@ -105,7 +105,7 @@ in Hy::
(import cherrypy)
(defclass HelloWorld []
(#@ cherrypy.expose (defn index [self]
#@(cherrypy.expose (defn index [self]
"Hello World!")))
(cherrypy.quickstart (HelloWorld))