From a981be22920b4802b5e5199c5b29dcd6c6ed0ba4 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 14 Jul 2014 23:47:15 +0200 Subject: [PATCH] doc: Fix typos --- mopidy/audio/actor.py | 2 +- mopidy/mixer.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index e48e3d4b..b88eafd8 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -451,7 +451,7 @@ class Audio(pykka.ThreadingActor): 0: Minimum volume. 100: - Max volume. + Maximum volume. :rtype: int in range [0..100] """ diff --git a/mopidy/mixer.py b/mopidy/mixer.py index 3c8c7639..7e9fc9ee 100644 --- a/mopidy/mixer.py +++ b/mopidy/mixer.py @@ -39,7 +39,7 @@ class Mixer(object): 0: Minimum volume, usually silent. 100: - Max volume. + Maximum volume. :class:`None`: Volume is unknown. @@ -66,7 +66,7 @@ class Mixer(object): Send ``volume_changed`` event to all mixer listeners. This method should be called by subclasses when the volume is changed, - either because of a call to :meth:`set_volume` or because or any + either because of a call to :meth:`set_volume` or because of any external entity changing the volume. """ logger.debug('Mixer event: volume_changed(volume=%d)', volume) @@ -100,7 +100,7 @@ class Mixer(object): Send ``mute_changed`` event to all mixer listeners. This method should be called by subclasses when the mute state is - changed, either because of a call to :meth:`set_mute` or because or + changed, either because of a call to :meth:`set_mute` or because of any external entity changing the mute state. """ logger.debug('Mixer event: mute_changed(mute=%s)', mute)