Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2019-11-30 22:35:43 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2019-12-14 20:52:55 +0300
commit83ac03843d83b500684110374b6dcd0e76062689 (patch)
treea3cdb4b3281294d3adc62f5f663db006c40dbc88 /Duplicati/Library/Interface/CommandLineArgument.cs
parent63ecd1a49ff66acbd0335044ecb360c73a218468 (diff)
Fix spelling errors in comments.
In doing so, we also normalized some line endings.
Diffstat (limited to 'Duplicati/Library/Interface/CommandLineArgument.cs')
-rw-r--r--Duplicati/Library/Interface/CommandLineArgument.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Duplicati/Library/Interface/CommandLineArgument.cs b/Duplicati/Library/Interface/CommandLineArgument.cs
index fad82bf6b..1b3daac89 100644
--- a/Duplicati/Library/Interface/CommandLineArgument.cs
+++ b/Duplicati/Library/Interface/CommandLineArgument.cs
@@ -205,7 +205,7 @@ namespace Duplicati.Library.Interface
/// <param name="type">The argument type</param>
/// <param name="shortDescription">The arguments short description</param>
/// <param name="longDescription">The arguments long description</param>
- /// <param name="defaultValue">The default value of the argumen</param>
+ /// <param name="defaultValue">The default value of the argument</param>
public CommandLineArgument(string name, ArgumentType type, string shortDescription, string longDescription, string defaultValue)
: this(name, type, shortDescription, longDescription)
{
@@ -219,7 +219,7 @@ namespace Duplicati.Library.Interface
/// <param name="type">The argument type</param>
/// <param name="shortDescription">The arguments short description</param>
/// <param name="longDescription">The arguments long description</param>
- /// <param name="defaultValue">The default value of the argumen</param>
+ /// <param name="defaultValue">The default value of the argument</param>
/// <param name="aliases">A list of aliases for the command</param>
public CommandLineArgument(string name, ArgumentType type, string shortDescription, string longDescription, string defaultValue, string[] aliases)
: this(name, type, shortDescription, longDescription, defaultValue)
@@ -234,7 +234,7 @@ namespace Duplicati.Library.Interface
/// <param name="type">The argument type</param>
/// <param name="shortDescription">The arguments short description</param>
/// <param name="longDescription">The arguments long description</param>
- /// <param name="defaultValue">The default value of the argumen</param>
+ /// <param name="defaultValue">The default value of the argument</param>
/// <param name="aliases">A list of aliases for the command</param>
/// <param name="values">A list of valid values for the command</param>
public CommandLineArgument(string name, ArgumentType type, string shortDescription, string longDescription, string defaultValue, string[] aliases, string[] values)
@@ -251,7 +251,7 @@ namespace Duplicati.Library.Interface
/// <param name="type">The argument type</param>
/// <param name="shortDescription">The arguments short description</param>
/// <param name="longDescription">The arguments long description</param>
- /// <param name="defaultValue">The default value of the argumen</param>
+ /// <param name="defaultValue">The default value of the argument</param>
/// <param name="aliases">A list of aliases for the command</param>
/// <param name="values">A list of valid values for the command</param>
/// <param name="deprecationMessage">A message indicating the reason for deprecation and any change suggestions</param>