From d0bc30db5987aee9bfc9ee8d50e6643a4b34de68 Mon Sep 17 00:00:00 2001 From: Clint Shryock Date: Thu, 28 Feb 2019 10:26:40 -0600 Subject: [PATCH] fix typo in code comment --- physical/inmem/inmem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physical/inmem/inmem.go b/physical/inmem/inmem.go index 97433a7d60..d9cca52610 100644 --- a/physical/inmem/inmem.go +++ b/physical/inmem/inmem.go @@ -196,7 +196,7 @@ func (i *InmemBackend) FailDelete(fail bool) { atomic.StoreUint32(i.failDelete, val) } -// List is used ot list all the keys under a given +// List is used to list all the keys under a given // prefix, up to the next prefix. func (i *InmemBackend) List(ctx context.Context, prefix string) ([]string, error) { i.permitPool.Acquire()