2
0

Rename LRUCache to LRU

This commit is contained in:
Jack Christensen
2019-08-24 19:48:43 -05:00
parent bcd6b9244a
commit 78abbdf1d7
3 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ func New(conn *pgconn.PgConn, mode int, cap int) Cache {
mustBeValidMode(mode)
mustBeValidCap(cap)
return NewLRUCache(conn, mode, cap)
return NewLRU(conn, mode, cap)
}
func mustBeValidMode(mode int) {