summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Sampson <adrian@radbox.org>2015-04-05 23:24:53 -0500
committerAdrian Sampson <adrian@radbox.org>2015-04-05 23:24:53 -0500
commite1013fe9c94383ed001542984f184136e0ff267e (patch)
tree223d0d2ea8ad67f0b3911f58462b729c25ea77f8
parentbd6cea42043413afad437438ea4d97dd5792799b (diff)
parent1966b1c31e0fa5e31228a83156b2d7e5936d246a (diff)
Merge branch 'master' of github.com:sampsyo/beetsv1.3.11
-rw-r--r--docs/dev/plugins.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/plugins.rst b/docs/dev/plugins.rst
index aa11fe6af..1899a7a1a 100644
--- a/docs/dev/plugins.rst
+++ b/docs/dev/plugins.rst
@@ -87,11 +87,11 @@ The function should use any of the utility functions defined in ``beets.ui``.
Try running ``pydoc beets.ui`` to see what's available.
You can add command-line options to your new command using the ``parser`` member
-of the ``Subcommand`` class, which is a ``CommonOptionParser`` instance. Just
+of the ``Subcommand`` class, which is a ``CommonOptionsParser`` instance. Just
use it like you would a normal ``OptionParser`` in an independent script. Note
that it offers several methods to add common options: ``--album``, ``--path``
and ``--format``. This feature is versatile and extensively documented, try
-``pydoc beets.ui.CommonOptionParser`` for more information.
+``pydoc beets.ui.CommonOptionsParser`` for more information.
.. _plugin_events: