diff --git a/cache.go b/cache.go index 1af1299..34b2c3d 100644 --- a/cache.go +++ b/cache.go @@ -1,5 +1,5 @@ -// Package pochache implements an in-memory, LRU cache, with preemptive update feature. -package pochache +// Package pocache implements an in-memory, LRU cache, with preemptive update feature. +package pocache import ( "context" diff --git a/cache_test.go b/cache_test.go index 2a4976d..3b188a1 100644 --- a/cache_test.go +++ b/cache_test.go @@ -1,4 +1,4 @@ -package pochache +package pocache import ( "context" diff --git a/go.mod b/go.mod index 9bf02c0..9321309 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/naughtygopher/pochache +module github.com/naughtygopher/pocache go 1.23