diff --git a/maps/linkedhashmap/linkedhashmap.go b/maps/linkedhashmap/linkedhashmap.go index 02e2391..45c4e35 100644 --- a/maps/linkedhashmap/linkedhashmap.go +++ b/maps/linkedhashmap/linkedhashmap.go @@ -22,7 +22,7 @@ func assertMapImplementation() { var _ maps.Map = (*Map)(nil) } -// Map holds the elements in a red-black tree +// Map holds the elements in a regular hash table, and uses doubly-linked list to store key ordering. type Map struct { table map[interface{}]interface{} ordering *doublylinkedlist.List