shithub: sox

Download patch

ref: 8579038a260c2f965d81ae360bdb0a7fe16d8369
parent: acaaffd4c726e09126493f0ac4f72cb57455b246
author: robs <robs>
date: Sat Jun 28 11:47:12 EDT 2008

minor doc fixes

--- a/soxformat.7
+++ b/soxformat.7
@@ -53,7 +53,7 @@
 To see if SoX has support for an optional format or device, enter
 .B sox -h
 and look for its name under the list:
-`AUDIO FILE FORMATS' or `AUDIO DEVICES'.
+`AUDIO FILE FORMATS' or `AUDIO DEVICE DRIVERS'.
 .PP
 \&\fB.raw\fR (also with \fB\-t sndfile\fR),
 .br
--- a/src/sox.c
+++ b/src/sox.c
@@ -923,7 +923,7 @@
     printf(" %s", format_list[i]);
   putchar('\n');
 
-  printf("PLAYLIST FORMATS: m3u pls\nAUDIO DEVICES:");
+  printf("PLAYLIST FORMATS: m3u pls\nAUDIO DEVICE DRIVERS:");
   for (i = formats = 0; sox_format_fns[i].fn; ++i) {
     sox_format_handler_t const * handler = sox_format_fns[i].fn();
     if ((handler->flags & SOX_FILE_DEVICE) && !(handler->flags & SOX_FILE_PHONY))
--- a/src/spectrogram.c
+++ b/src/spectrogram.c
@@ -578,7 +578,7 @@
       "\t-p num\tPermute colours\n"
       "\t-t text\tTitle text\n"
       "\t-c text\tComment text\n"
-      "\t-o text\toutput file name, default `spectrogram.png'\n",
+      "\t-o text\tOutput file name, default `spectrogram.png'\n",
     0, getopts, start, flow, drain, stop, NULL, sizeof(priv_t)};
   return &handler;
 }