summaryrefslogtreecommitdiff
path: root/2d
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@member.fsf.org>2013-09-15 22:22:30 -0400
committerDavid Thompson <dthompson@member.fsf.org>2013-09-15 22:22:30 -0400
commit37f162b6cefc6669b9b865da0e1055419f7b7633 (patch)
treecb16199b5538b3b405645757465aeda9e8de0768 /2d
parentf3c272a69975ddf1243bb47776fc20d902c24349 (diff)
Clean up docstrings for audio module.
Diffstat (limited to '2d')
-rw-r--r--2d/audio.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/2d/audio.scm b/2d/audio.scm
index e7d0023..2978a22 100644
--- a/2d/audio.scm
+++ b/2d/audio.scm
@@ -40,7 +40,7 @@
#f)))
(define (sample-play sample)
- "Play SAMPLE."
+ "Play audio SAMPLE."
(SDL:play-channel (sample-audio sample)))
(define (sample-volume)
@@ -48,7 +48,7 @@
(SDL:volume))
(define (set-sample-volume volume)
- "Set the volume that samples are played at."
+ "Set the volume that samples are played at to VOLUME."
(SDL:volume volume))
(export make-sample
@@ -77,7 +77,7 @@
(SDL:play-music (music-audio music)))
(define (music-volume)
- "Return volume that music is played at."
+ "Return the volume that music is played at."
(SDL:music-volume))
(define (set-music-volume volume)