diff --git a/Doxyfile b/Doxyfile index fb9ac4b..2c27fbb 100644 --- a/Doxyfile +++ b/Doxyfile @@ -829,7 +829,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = README.md implementingCustomPolicies.dox heterogeneousLookup.dox include/ +INPUT = README.md implementingCustomPolicies.dox usingCustomKeys.dox heterogeneousLookup.dox include/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/README.md b/README.md index 89b74cb..42cf858 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ as well as a comprehensive set of primitives for building custom caching solutio #### Custom Keys Cachemere supports using arbitrary types as keys. The page -on [Using Custom Keys](https://coveooss.github.io/cachemere/usingCustomKeys.html) covers this in greater detail. +on [Using Custom Keys](https://coveooss.github.io/cachemere/customKeys.html) covers this in greater detail. #### Heterogeneous Lookup @@ -108,4 +108,4 @@ policies can also be used with different cache implementations. For instance, instead of using more common policies like Least-Recently Used (LRU), a product might need to use a custom cache that takes the frequency of access as well as the size of the item into consideration when establishing which item to evict. To do this, one could implement a `SizeBasedEvictionPolicy` and use -it with the existing `cachemere::Cache`. \ No newline at end of file +it with the existing `cachemere::Cache`.