Skip to content

Commit

Permalink
Fixes spelling mistakes in CLI help
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Mar 20, 2019
1 parent a22dab0 commit 6cbf3da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// --------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AnalyseLongRecordings.Arguments.cs" company="QutEcoacoustics">
// All code in this file and all associated files are the copyright and property of the QUT Ecoacoustics Research Group (formerly MQUTeR, and formerly QUT Bioacoustics Research Group).
// </copyright>
Expand Down Expand Up @@ -31,7 +31,7 @@ public partial class AnalyseLongRecording

[Command(
CommandName,
Description = "Analyses long recordings, cutting them into blocks. Performs the analysis specified in Config file.",
Description = "Analyzes long recordings, cutting them into blocks. Performs the analysis specified in Config file.",
ExtendedHelpText = AdditionalNotes)]
public class Arguments : SourceConfigOutputDirArguments
{
Expand All @@ -43,7 +43,7 @@ public Arguments()
#endif
}

[Option(Description = "Sets the name of the analysis to run. If not set, analysis identifer is parsed from the config file name.")]
[Option(Description = "Sets the name of the analysis to run. If not set, analysis identifier is parsed from the config file name.")]
public string AnalysisIdentifier { get; set; }

[Option(
Expand Down
4 changes: 2 additions & 2 deletions src/AnalysisPrograms/Production/Arguments/MainArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public DebugOptions DebugOption
}

[Option(
Description = "Set the log vebosity level. Valid values: None = 0, Error = 1, Warn = 2, Info = 3, Debug = 4, Trace = 5, Verbose = 6, All = 7",
Description = "Set the log verbosity level. Valid values: None = 0, Error = 1, Warn = 2, Info = 3, Debug = 4, Trace = 5, Verbose = 6, All = 7",
Inherited = true,
ShortName = null)]
public LogVerbosity LogLevel
Expand Down Expand Up @@ -166,7 +166,7 @@ public LogVerbosity LogLevel
[Option(
"-vv",
Inherited = true,
Description = "Set the logging to very verbose. Equivalent to LogLevel = Trace = 4")]
Description = "Set the logging to very verbose. Equivalent to LogLevel = Trace = 5")]
public bool VVerbose { get; set; }

[Option(
Expand Down

0 comments on commit 6cbf3da

Please sign in to comment.