From f17721c364a522f87b3351a73676405d44b955f6 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Sat, 5 Jan 2019 02:10:03 +0100 Subject: A few more spelling fixes. --- internal/fusefrontend/dircache.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/fusefrontend') diff --git a/internal/fusefrontend/dircache.go b/internal/fusefrontend/dircache.go index 5c8b760..6d0d570 100644 --- a/internal/fusefrontend/dircache.go +++ b/internal/fusefrontend/dircache.go @@ -14,8 +14,8 @@ import ( const ( // Number of entries in the dirCache. Three entries work well for two // (probably also three) parallel tar extracts (hit rate around 92%). - // Keen in sync with test_helpers.maxCacheFds ! - // TODO: How to share this constant without causing in import cycle? + // Keep in sync with test_helpers.maxCacheFds ! + // TODO: How to share this constant without causing an import cycle? dirCacheSize = 3 // Enable Lookup/Store/Clear debug messages enableDebugMessages = false @@ -52,7 +52,7 @@ type dirCacheStruct struct { entries [dirCacheSize]dirCacheEntryStruct // Where to store the next entry (index into entries) nextIndex int - // On the first Lookup(), the expire thread is stared, and this flag is set + // On the first Lookup(), the expire thread is started, and this flag is set // to true. expireThreadRunning bool // Hit rate stats. Evaluated and reset by the expire thread. -- cgit v1.2.3