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/IEncryption.cs
parent63ecd1a49ff66acbd0335044ecb360c73a218468 (diff)
Fix spelling errors in comments.
In doing so, we also normalized some line endings.
Diffstat (limited to 'Duplicati/Library/Interface/IEncryption.cs')
-rw-r--r--Duplicati/Library/Interface/IEncryption.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/Library/Interface/IEncryption.cs b/Duplicati/Library/Interface/IEncryption.cs
index 6a59598e0..870d3d10d 100644
--- a/Duplicati/Library/Interface/IEncryption.cs
+++ b/Duplicati/Library/Interface/IEncryption.cs
@@ -28,7 +28,7 @@ namespace Duplicati.Library.Interface
/// Public interface for an encryption method.
/// All modules that implements encryption must implement this interface.
/// The classes that implements this interface MUST also
- /// implement a default constructor and a construtor that
+ /// implement a default constructor and a constructor that
/// has the signature new(string passphrase, Dictionary&lt;string, string&gt; options).
/// The default constructor is used to construct an instance
/// so the DisplayName and other values can be read.
@@ -59,7 +59,7 @@ namespace Duplicati.Library.Interface
void Decrypt(string inputfile, string outputfile);
/// <summary>
- /// Dencrypts the contents of the input stream, and writes the result to the output stream.
+ /// Decrypts the contents of the input stream, and writes the result to the output stream.
/// </summary>
/// <param name="input">The stream to decrypt</param>
/// <param name="output">The decrypted stream</param>