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/Encryption
parent63ecd1a49ff66acbd0335044ecb360c73a218468 (diff)
Fix spelling errors in comments.
In doing so, we also normalized some line endings.
Diffstat (limited to 'Duplicati/Library/Encryption')
-rw-r--r--Duplicati/Library/Encryption/CryptoStreamWrapper.cs2
-rw-r--r--Duplicati/Library/Encryption/EncryptionBase.cs2
-rw-r--r--Duplicati/Library/Encryption/GPGStreamWrapper.cs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Duplicati/Library/Encryption/CryptoStreamWrapper.cs b/Duplicati/Library/Encryption/CryptoStreamWrapper.cs
index d24e58eb9..e12dc38eb 100644
--- a/Duplicati/Library/Encryption/CryptoStreamWrapper.cs
+++ b/Duplicati/Library/Encryption/CryptoStreamWrapper.cs
@@ -27,7 +27,7 @@ namespace Duplicati.Library.Encryption
/// <summary>
/// Wraps a crypto stream, ensuring that it is correctly disposed
/// </summary>
- /// <param name="basestream">The stream to wrape</param>
+ /// <param name="basestream">The stream to wrap</param>
public CryptoStreamWrapper(System.Security.Cryptography.CryptoStream basestream)
: base(basestream)
{
diff --git a/Duplicati/Library/Encryption/EncryptionBase.cs b/Duplicati/Library/Encryption/EncryptionBase.cs
index e15533e77..6ee5bb6a5 100644
--- a/Duplicati/Library/Encryption/EncryptionBase.cs
+++ b/Duplicati/Library/Encryption/EncryptionBase.cs
@@ -24,7 +24,7 @@ using Duplicati.Library.Interface;
namespace Duplicati.Library.Encryption
{
/// <summary>
- /// Simple helper class that implements the filebased functions, and wraps them onto the stream based ones
+ /// Simple helper class that implements the file-based functions, and wraps them onto the stream based ones
/// </summary>
public abstract class EncryptionBase : IEncryption
{
diff --git a/Duplicati/Library/Encryption/GPGStreamWrapper.cs b/Duplicati/Library/Encryption/GPGStreamWrapper.cs
index eb9e09550..55a968c36 100644
--- a/Duplicati/Library/Encryption/GPGStreamWrapper.cs
+++ b/Duplicati/Library/Encryption/GPGStreamWrapper.cs
@@ -30,7 +30,7 @@ namespace Duplicati.Library.Encryption
/// <summary>
/// Wraps a crypto stream, ensuring that it is correctly disposed
/// </summary>
- /// <param name="basestream">The stream to wrape</param>
+ /// <param name="basestream">The stream to wrap</param>
public GPGStreamWrapper(System.Diagnostics.Process p, System.Threading.Thread t, Stream basestream)
: base(basestream)
{