From d44fb36e25e0b1286cc90a7d4eed8422ce5424ff Mon Sep 17 00:00:00 2001 From: Brian Beck Date: Fri, 17 Mar 2017 22:11:00 -0700 Subject: [PATCH] Fix trailing space in docs --- docs/types.md | 46 ++++++++++++++++++++--------------------- scripts/render-types.js | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/docs/types.md b/docs/types.md index 0e5af94..e33bd58 100644 --- a/docs/types.md +++ b/docs/types.md @@ -5657,19 +5657,19 @@ Archive](https://musicbrainz.org/doc/Cover_Art_Archive). Description - SMALL + SMALL A maximum dimension of 250px. - LARGE + LARGE A maximum dimension of 500px. - FULL + FULL The image’s original dimensions, with no maximum. @@ -5686,7 +5686,7 @@ etc. Description - ALBUM + ALBUM An album, perhaps better defined as a “Long Play” (LP) release, generally consists of previously unreleased material (unless this type @@ -5695,7 +5695,7 @@ includes album re-issues, with or without bonus tracks. - SINGLE + SINGLE A single typically has one main song and possibly a handful of additional tracks or remixes of the main track. A single is usually named @@ -5703,7 +5703,7 @@ after its main song. - EP + EP An EP is a so-called “Extended Play” release and often contains the letters EP in the title. Generally an EP will be shorter than a @@ -5714,66 +5714,66 @@ that a release is an EP if the artist defines it as such. - OTHER + OTHER Any release that does not fit any of the other categories. - BROADCAST + BROADCAST An episodic release that was originally broadcast via radio, television, or the Internet, including podcasts. - COMPILATION + COMPILATION A compilation is a collection of previously released tracks by one or more artists. - SOUNDTRACK + SOUNDTRACK A soundtrack is the musical score to a movie, TV series, stage show, computer game, etc. - SPOKENWORD + SPOKENWORD A non-music spoken word release. - INTERVIEW + INTERVIEW An interview release contains an interview, generally with an artist. - AUDIOBOOK + AUDIOBOOK An audiobook is a book read by a narrator without music. - LIVE + LIVE A release that was recorded live. - REMIX + REMIX A release that was (re)mixed from previously released material. - DJMIX + DJMIX A DJ-mix is a sequence of several recordings played one after the other, each one modified so that they blend together into a continuous @@ -5783,7 +5783,7 @@ credited in a fairly prominent way. - MIXTAPE + MIXTAPE Promotional in nature (but not necessarily free), mixtapes and street albums are often released by artists to promote new artists, or @@ -5800,14 +5800,14 @@ to labels. - DEMO + DEMO A release that was recorded for limited circulation or reference use rather than for general public release. - NAT + NAT A non-album track (special case). @@ -5824,14 +5824,14 @@ bootleg, etc. Description - OFFICIAL + OFFICIAL Any release officially sanctioned by the artist and/or their record company. (Most releases will fit into this category.) - PROMOTION + PROMOTION A giveaway release or a release intended to promote an upcoming official release, e.g. prerelease albums or releases included with a @@ -5839,14 +5839,14 @@ magazine. - BOOTLEG + BOOTLEG An unofficial/underground release that was not sanctioned by the artist and/or the record company. - PSEUDORELEASE + PSEUDORELEASE A pseudo-release is a duplicate release for translation/transliteration purposes. diff --git a/scripts/render-types.js b/scripts/render-types.js index ca37de6..c1ed0cd 100644 --- a/scripts/render-types.js +++ b/scripts/render-types.js @@ -132,7 +132,7 @@ enums.forEach(type => { console.log('') type.enumValues.forEach(value => { console.log(' ') - console.log(` ${value.name} ${value.isDeprecated ? '⚠️' : ''}`) + console.log(` ${value.name}${value.isDeprecated ? ' ⚠️' : ''}`) console.log(' ') console.log(` ${markdown(value.description)}`) if (value.isDeprecated) {