Skip to content

Commit e7a0002

Browse files
committed
Fixes a spelling mistake.
1 parent 1de4186 commit e7a0002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LRU Cache/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private func insert(_ key: KeyType, val: Any) {
2828

2929
#### Purging the cache
3030

31-
When the cahce is full, a purge must take place starting with the least recently used element. In this case, we need to `remove` the lowest priority node. The operation is like this:
31+
When the cache is full, a purge must take place starting with the least recently used element. In this case, we need to `remove` the lowest priority node. The operation is like this:
3232

3333
```swift
3434
private func remove(_ key: KeyType) {

0 commit comments

Comments
 (0)