onevcat 5 년 전
부모
커밋
4e6526c7a8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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