PyDoc: use complete sentences in comments for templates & examples

This commit is contained in:
Campbell Barton
2025-04-02 23:46:58 +00:00
parent d001e143a9
commit b2c57fd877
58 changed files with 181 additions and 179 deletions

View File

@@ -8,15 +8,15 @@ This script shows how to use the classes: :class:`Device`, :class:`Sound` and
import aud
device = aud.Device()
# load sound file (it can be a video file with audio)
# Load sound file (it can be a video file with audio).
sound = aud.Sound('music.ogg')
# play the audio, this return a handle to control play/pause
# Play the audio, this return a handle to control play/pause.
handle = device.play(sound)
# if the audio is not too big and will be used often you can buffer it
# If the audio is not too big and will be used often you can buffer it.
sound_buffered = aud.Sound.cache(sound)
handle_buffered = device.play(sound_buffered)
# stop the sounds (otherwise they play until their ends)
# Stop the sounds (otherwise they play until their ends).
handle.stop()
handle_buffered.stop()