summaryrefslogtreecommitdiff
path: root/2d/texture.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@member.fsf.org>2013-09-18 19:04:48 -0400
committerDavid Thompson <dthompson@member.fsf.org>2013-09-18 19:04:48 -0400
commitecd1c7638386684fc1991b757da52a4f53155931 (patch)
tree102274af15c4017f742a541a54ea229fbb1c767a /2d/texture.scm
parentca3c0f6fb63ea9f51a6ef546345ee301d1ea19b9 (diff)
Clean up docstrings for sprite module.
Diffstat (limited to '2d/texture.scm')
-rw-r--r--2d/texture.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/2d/texture.scm b/2d/texture.scm
index 7d0f7bd..ee0490c 100644
--- a/2d/texture.scm
+++ b/2d/texture.scm
@@ -159,7 +159,7 @@ that will be rendered, in pixels."
texture))
(define* (draw-texture texture x y #:optional (color #xffffffff))
- "Renders a textured quad in GL immediate mode."
+ "Render a textured quad in GL immediate mode."
(let* ((x2 (+ x (texture-width texture)))
(y2 (+ y (texture-height texture)))
(color (rgba->gl-color color))