diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-09 09:17:14 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-09 09:17:14 -0500 |
commit | 74c85df8a56eb18634c5d68953e078ab99585ade (patch) | |
tree | 28f4f1ded132ed447edc3f7c5abe793819b2a351 | |
parent | ff91597716189688f314e5ffe4ba0cb8b92a7c56 (diff) |
[formatting] [doc] readme
-rw-r--r-- | README.org | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -160,9 +160,8 @@ Here is a simple example where a handler is defined, from the pong game: #+begin_src lisp (ww:defhandler pong-mousemove (ww:on-mousemotion (app) - (setf (ww:x (paddle app)) - (- x (* 0.5 (ww:width (paddle app)))) - (dx (paddle app)) xrel))) + (setf (ww:x (paddle app)) (- x (* 0.5 (ww:width (paddle app)))) + (dx (paddle app)) xrel))) #+end_src See the example for details. |