Evgenii Neumerzhitckii 6 years ago
parent
commit
265a85e57b
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Sources/KeychainSwift.swift

+ 4 - 4
Sources/KeychainSwift.swift

@@ -85,7 +85,7 @@ open class KeychainSwift {
   open func set(_ value: Data, forKey key: String,
   open func set(_ value: Data, forKey key: String,
     withAccess access: KeychainSwiftAccessOptions? = nil) -> Bool {
     withAccess access: KeychainSwiftAccessOptions? = nil) -> Bool {
     
     
-    // The lock prevents the code to be run simlultaneously
+    // The lock prevents the code to be run simultaneously
     // from multiple threads which may result in crashing
     // from multiple threads which may result in crashing
     lock.lock()
     lock.lock()
     defer { lock.unlock() }
     defer { lock.unlock() }
@@ -164,7 +164,7 @@ open class KeychainSwift {
   
   
   */
   */
   open func getData(_ key: String, asReference: Bool = false) -> Data? {
   open func getData(_ key: String, asReference: Bool = false) -> Data? {
-    // The lock prevents the code to be run simlultaneously
+    // The lock prevents the code to be run simultaneously
     // from multiple threads which may result in crashing
     // from multiple threads which may result in crashing
     lock.lock()
     lock.lock()
     defer { lock.unlock() }
     defer { lock.unlock() }
@@ -224,7 +224,7 @@ open class KeychainSwift {
   */
   */
   @discardableResult
   @discardableResult
   open func delete(_ key: String) -> Bool {
   open func delete(_ key: String) -> Bool {
-    // The lock prevents the code to be run simlultaneously
+    // The lock prevents the code to be run simultaneously
     // from multiple threads which may result in crashing
     // from multiple threads which may result in crashing
     lock.lock()
     lock.lock()
     defer { lock.unlock() }
     defer { lock.unlock() }
@@ -267,7 +267,7 @@ open class KeychainSwift {
   */
   */
   @discardableResult
   @discardableResult
   open func clear() -> Bool {
   open func clear() -> Bool {
-    // The lock prevents the code to be run simlultaneously
+    // The lock prevents the code to be run simultaneously
     // from multiple threads which may result in crashing
     // from multiple threads which may result in crashing
     lock.lock()
     lock.lock()
     defer { lock.unlock() }
     defer { lock.unlock() }