Skip to content

Commit fb8bfd9

Browse files
committed
Fix markup
1 parent 8cef38a commit fb8bfd9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For packagers:
5858
- Optional ``extra_tags`` parameter has been removed from
5959
``BeetsPlugin.candidates`` method signature since it is never passed in. If
6060
you override this method in your plugin, feel free to remove this parameter.
61-
- Loosened `typing_extensions`` dependency in pyproject.toml to apply to every
61+
- Loosened ``typing_extensions`` dependency in pyproject.toml to apply to every
6262
python version.
6363

6464
For plugin developers:
@@ -4694,7 +4694,7 @@ new configuration options and the ability to clean up empty directory subtrees.
46944694
for normal and "compilation" (various artists) releases as well as for each
46954695
album type (see below). The default path formats have been changed to use
46964696
``$albumartist`` instead of ``$artist``.
4697-
- A **new ``albumtype`` field** reflects the release type `as specified by
4697+
- A **new** ``albumtype`` **field** reflects the release type `as specified by
46984698
MusicBrainz`_.
46994699
- When deleting files, beets now appropriately "prunes" the directory
47004700
tree---empty directories are automatically cleaned up. *(Thanks to wlof on

docs/dev/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ to extend the kinds of metadata that they can easily manage.
404404

405405
The ``MediaFile`` class uses ``MediaField`` descriptors to provide access to
406406
file tags. If you have created a descriptor you can add it through your plugins
407-
:py:meth:`beets.plugins.BeetsPlugin.add_media_field()`` method.
407+
:py:meth:`beets.plugins.BeetsPlugin.add_media_field()` method.
408408

409409
.. _mediafile: https://mediafile.readthedocs.io/en/latest/
410410

docs/plugins/loadext.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ specifics may vary from system to system):
5050
$ wget https://sqlite.org/2019/sqlite-src-3280000.zip
5151
$ unzip sqlite-src-3280000.zip
5252
$ cd sqlite-src-3280000/ext/icu
53-
$ gcc -shared -fPIC icu.c `icu-config --ldflags` -o libicu.so
53+
$ gcc -shared -fPIC icu.c $(icu-config --ldflags) -o libicu.so
5454
$ cp libicu.so ~/.config/beets

0 commit comments

Comments
 (0)