Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chores: fix spelling errors, update build system and copyright year on LICENCE.txt files #28

Merged
merged 9 commits into from
Jan 16, 2024
Prev Previous commit
Next Next commit
memcache: fix spelling errors
Signed-off-by: Alejandro Mery <[email protected]>
  • Loading branch information
amery committed Jan 13, 2024
commit cb67458b7a2b1806266af7fc60501d0738066df5
4 changes: 2 additions & 2 deletions x/memcache/singleflight.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ type outreacher struct {
// Expire returns the error set by a failed outward.Get()
func (p *outreacher) Err() error { return p.err }

// Expire returns the data set by a succesful outward.Get()
// Expire returns the data set by a successful outward.Get()
func (p *outreacher) Bytes() []byte { return p.b }

// Expire returns the expiration date set by a succesful outward.Get()
// Expire returns the expiration date set by a successful outward.Get()
func (p *outreacher) Expire() time.Time { return p.ex }

// Ok tells if a value has been stored
Expand Down