diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-09-15 22:22:30 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-09-15 22:22:30 -0400 |
commit | 37f162b6cefc6669b9b865da0e1055419f7b7633 (patch) | |
tree | cb16199b5538b3b405645757465aeda9e8de0768 /2d | |
parent | f3c272a69975ddf1243bb47776fc20d902c24349 (diff) |
Clean up docstrings for audio module.
Diffstat (limited to '2d')
-rw-r--r-- | 2d/audio.scm | 6 |
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) |