Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/caches/lfu_cache_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace caches
* represents how many times that particular key has been accessed by someone. When a
* replacement has to occur the LFU policy just takes a look onto keys' frequencies
* and remove the least used one. E.g. cache of two elements where `A` has been accessed
* 10 times and `B` only 2. When you want to add a key `C` the LFU policy returns `B`
* 10 times and `B` - only 2. When you want to add a key `C` the LFU policy returns `B`
* as a replacement candidate.
* \tparam Key Type of a key a policy works with
*/
Expand Down