shithub: hugo

Download patch

ref: aff9c091669a022b59f493c9dccf72be29511299
parent: fdd4a768f053b21271d4520bf0d43baf62d516da
author: Bjørn Erik Pedersen <[email protected]>
date: Tue Nov 13 13:16:53 EST 2018

cache/filecache: Spelling corrections

--- a/cache/filecache/filecache.go
+++ b/cache/filecache/filecache.go
@@ -115,7 +115,7 @@
 	return l.File.Close()
 }
 
-// GetWriteCloser returns a transactional writer into the cache.
+// WriteCloser returns a transactional writer into the cache.
 // It's important that it's closed when done.
 func (c *Cache) WriteCloser(id string) (ItemInfo, io.WriteCloser, error) {
 	id = cleanID(id)
@@ -260,7 +260,7 @@
 	return info, r, nil
 }
 
-// get gets the file with the given id. If it's expired, it will
+// getOrRemove gets the file with the given id. If it's expired, it will
 // be removed.
 func (c *Cache) getOrRemove(id string) hugio.ReadSeekCloser {
 	if c.maxAge == 0 {
@@ -316,7 +316,7 @@
 	return f[strings.ToLower(name)]
 }
 
-// GetJSOnCache gets the file cache for getJSON.
+// GetJSONCache gets the file cache for getJSON.
 func (f Caches) GetJSONCache() *Cache {
 	return f[cacheKeyGetJSON]
 }