diff options
-rw-r--r-- | man/http-music-crawl-local.1 | 2 | ||||
-rwxr-xr-x | src/crawl-local.js | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/man/http-music-crawl-local.1 b/man/http-music-crawl-local.1 index 4949d98..6e6530d 100644 --- a/man/http-music-crawl-local.1 +++ b/man/http-music-crawl-local.1 @@ -16,6 +16,6 @@ It attempts to only add music files (mp3, ogg, etc) to the playlist (see \fB--ex .TP .BR -e ", " --extensions ", " --exts Sets file extensions that are considered music tracks to be added to the result playlist. -\fB<extensions>\fR is a comma-separated list of extensions, not including the "dots"; e.g. \fR'mp3,wav'\fB. +\fB<extensions>\fR is a comma-separated list of extensions, e.g. \fR'mp3,wav'\fB. A default list of extensions exists but is not *extremely* extensive. Use --extensions when needed! diff --git a/src/crawl-local.js b/src/crawl-local.js index 202c732..1baebc3 100755 --- a/src/crawl-local.js +++ b/src/crawl-local.js @@ -65,8 +65,7 @@ async function main(args) { // --extensions <extensions> (alias: --exts, -e) // Sets file extensions that are considered music tracks to be added to // the result playlist. - // <extensions> is a comma-separated list of extensions, not including - // the "dots"; e.g. 'mp3,wav'. + // <extensions> is a comma-separated list of extensions, e.g. 'mp3,wav'. // A default list of extensions exists but is not *extremely* extensive. // (Use --extensions when needed!) |