Skip to content

Commit

Permalink
README.md: updated code in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jahnestacado committed Jun 18, 2024
1 parent ea70edf commit 3c95c8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ import (
)

var (
entry1 = tlru.Entry{Key: "entry-1", Value: 1}
entry2 = tlru.Entry{Key: "entry-2", Value: 2}
entry3 = tlru.Entry{Key: "entry-3", Value: 3}
entry4 = tlru.Entry{Key: "entry-4", Value: 4}
entry5 = tlru.Entry{Key: "entry-5", Value: 5}
entry1 = Entry[string, int]{Key: "entry1", Value: 1}
entry2 = Entry[string, int]{Key: "entry2", Value: 2}
entry3 = Entry[string, int]{Key: "entry3", Value: 3}
entry4 = Entry[string, int]{Key: "entry4", Value: 4}
entry5 = Entry[string, int]{Key: "entry-5", Value: 5}

ttl = 2 * time.Millisecond
)
Expand Down

0 comments on commit 3c95c8f

Please sign in to comment.