shithub: aubio

Download patch

ref: c7ec2c6d3822911f0b386a542fadc13c383384bd
parent: b235c0ebcf217209b267bf95f3ed90a788b6b919
author: Paul Brossier <piem@piem.org>
date: Sat Dec 14 16:06:57 EST 2013

examples/parse_args.h: improve help message

--- a/examples/parse_args.h
+++ b/examples/parse_args.h
@@ -61,9 +61,9 @@
 {
   fprintf (stream, "usage: %s [ options ] \n", prog_name);
   fprintf (stream,
-      "       -i      --input            input type\n"
+      "       -i      --input            input file\n"
 #ifdef PROG_HAS_OUTPUT
-      "       -o      --output           output type\n"
+      "       -o      --output           output file\n"
 #endif
       "       -r      --samplerate       select samplerate\n"
       "       -B      --bufsize          set buffer size\n"
@@ -172,7 +172,7 @@
       case 'H':
         hop_size = atoi (optarg);
         break;
-      case 'O':                /*onset type */
+      case 'O':                /*onset method */
         onset_method = optarg;
         break;
       case 't':                /* threshold value for onset */
--