Преглед на файлове

acme/autocert: fix typo in Cache doc comment

Change-Id: I13dc3119cb46f0649147959c05c6c62624c43690
Reviewed-on: https://go-review.googlesource.com/35070
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Andrew Gerrand преди 9 години
родител
ревизия
1d77d5bd47
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      acme/autocert/cache.go

+ 1 - 1
acme/autocert/cache.go

@@ -27,7 +27,7 @@ type Cache interface {
 	Get(ctx context.Context, key string) ([]byte, error)
 
 	// Put stores the data in the cache under the specified key.
-	// Inderlying implementations may use any data storage format,
+	// Underlying implementations may use any data storage format,
 	// as long as the reverse operation, Get, results in the original data.
 	Put(ctx context.Context, key string, data []byte) error