onevcat il y a 5 ans
Parent
commit
4e6526c7a8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Sources/Cache/MemoryStorage.swift

+ 1 - 1
Sources/Cache/MemoryStorage.swift

@@ -86,7 +86,7 @@ public enum MemoryStorage {
                 let nsKey = key as NSString
                 guard let object = storage.object(forKey: nsKey) else {
                     // This could happen if the object is moved by cache `totalCostLimit` or `countLimit` rule.
-                    // We didn't remove the key yet until now, since we do not want to introduce additonal lock.
+                    // We didn't remove the key yet until now, since we do not want to introduce additional lock.
                     // See https://github.com/onevcat/Kingfisher/issues/1233
                     keys.remove(key)
                     continue