Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
umputun committed Feb 26, 2019
1 parent 8374f46 commit d592ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Sizer interface {
Size() int
}

// LoadingCache defines guava-like cache with Get method returning cached value ao retriving it if not in cache
// LoadingCache defines guava-like cache with Get method returning cached value ao retrieving it if not in cache
type LoadingCache interface {
Get(key string, fn func() (Value, error)) (val Value, err error) // load or get from cache
Peek(key string) (Value, bool) // get from cache by key
Expand Down

0 comments on commit d592ebe

Please sign in to comment.