diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-02 06:50:16 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-02 06:50:16 -0500 |
commit | d618184156f734b2e9aa4ec7d1bc3d0bfe274722 (patch) | |
tree | 640e78e1ab322796cb67c48aca02be166922379c /examples/06-sprite.lisp | |
parent | e264b9febc1bf036c54110b21a346bcfcf01f75e (diff) |
[example] [typo]
Diffstat (limited to 'examples/06-sprite.lisp')
-rw-r--r-- | examples/06-sprite.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/06-sprite.lisp b/examples/06-sprite.lisp index 1eade58..57916a5 100644 --- a/examples/06-sprite.lisp +++ b/examples/06-sprite.lisp @@ -11,8 +11,8 @@ ((walkingp :accessor walkingp :initform nil))) (defun set-key-if-not (sprite key ) - "Sets the frameey for sprite if that key is not already set. Also -sets the frameset's RUNNINGP to T if it is not already." + "Sets the frame kyey for sprite if that key is not already set. Also + sets the frameset's RUNNINGP to T if it is not already." (unless (eql key (ww::frameset-key sprite)) (setf (ww::runningp (ww::current-frameset sprite)) nil) (setf (ww::frameset-key sprite) key)) |