Skip to content

Commit 330cabc

Browse files
Update test-app/runtime/src/main/cpp/LRUCache.h
Co-authored-by: Copilot <[email protected]>
1 parent 9cd8bef commit 330cabc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-app/runtime/src/main/cpp/LRUCache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class LRUCache {
4343
// Key to value and key history iterator
4444
typedef robin_hood::unordered_map< key_type, std::pair<value_type, typename key_tracker_type::iterator> > key_to_value_type;
4545

46-
// Constuctor specifies the cached function and
46+
// Constructor specifies the cached function and
4747
// the maximum number of records to be stored
4848
LRUCache(value_type (*loadCallback)(const key_type&, void*), void (*evictCallback)(const value_type&, void*), bool (*cacheValidCallback)(const key_type&, const value_type&, void*), size_t capacity, void* state)
4949
: m_loadCallback(loadCallback), m_capacity(capacity), m_evictCallback(evictCallback), m_cacheValidCallback(cacheValidCallback), m_state(state) {

0 commit comments

Comments
 (0)