From b9f21a54f179464dcfc46e922fcfc56f193a5fd6 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 28 Jan 2021 19:01:38 +0100 Subject: [PATCH] Fix typos --- AAXtoMP3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AAXtoMP3 b/AAXtoMP3 index 2733d26..f1a3658 100755 --- a/AAXtoMP3 +++ b/AAXtoMP3 @@ -16,7 +16,7 @@ container=mp3 # Just in case we need to change the container. Use VALIDATE=0 # Validate the input aax file(s) only. No Transcoding of files will occur DEBUG=0 # Default off, If set extremely verbose output. noclobber=0 # Default off, clobber only if flag is enabled -continue=0 # Default off, If set Transcoding is skiped and chapter splitting starts at chapter continueAt. +continue=0 # Default off, If set Transcoding is skipped and chapter splitting starts at chapter continueAt. continueAt=1 # Optional chapter to continue splitting the chapters. # ----- @@ -54,7 +54,7 @@ while true; do -d | --debug ) DEBUG=1; shift ;; # Validate ONLY the aax file(s) No transcoding occurs -V | --validate ) VALIDATE=1; shift ;; - # continue spliting chapters at chapter continueAt + # continue splitting chapters at chapter continueAt --continue ) continueAt="$2"; continue=1; shift 2 ;; # Command synopsis. -h | --help ) printf "$usage" $0 ; exit ;;