Skip to content

Commit 1bcc2aa

Browse files
committed
Fix misspell
1 parent 74a978b commit 1bcc2aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SQLite.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ static string Quote (string unsafeString)
364364
/// if your database is encrypted.
365365
/// This only has an effect if you are using the SQLCipher nuget package.
366366
/// </summary>
367-
/// <param name="key">Ecryption key plain text that is converted to the real encryption key using PBKDF2 key derivation</param>
367+
/// <param name="key">Encryption key plain text that is converted to the real encryption key using PBKDF2 key derivation</param>
368368
void SetKey (string key)
369369
{
370370
if (key == null)
@@ -379,7 +379,7 @@ void SetKey (string key)
379379
/// if your database is encrypted.
380380
/// This only has an effect if you are using the SQLCipher nuget package.
381381
/// </summary>
382-
/// <param name="key">256-bit (32 byte) ecryption key data</param>
382+
/// <param name="key">256-bit (32 byte) encryption key data</param>
383383
void SetKey (byte[] key)
384384
{
385385
if (key == null)

0 commit comments

Comments
 (0)