diff options
author | Caesar Chad <BLUE.WEB.GEEK@gmail.com> | 2018-08-27 16:51:26 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-08-27 16:51:26 +0800 |
commit | f0488e80f7837094ac74327f0a4f5f6a270641f4 (patch) | |
tree | 54c44165a9007c688d4f6e43c1caf56ad2afafde | |
parent | d1aa605f1e8639769cdd75bcec3064c29a62b34a (diff) | |
download | go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.tar go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.tar.gz go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.tar.bz2 go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.tar.lz go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.tar.xz go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.tar.zst go-tangerine-f0488e80f7837094ac74327f0a4f5f6a270641f4.zip |
signer/storage: fix typo (#17504)
-rw-r--r-- | signer/storage/aes_gcm_storage.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signer/storage/aes_gcm_storage.go b/signer/storage/aes_gcm_storage.go index 225276667..399637a44 100644 --- a/signer/storage/aes_gcm_storage.go +++ b/signer/storage/aes_gcm_storage.go @@ -36,7 +36,7 @@ type storedCredential struct { CipherText []byte `json:"c"` } -// AESEncryptedStorage is a storage type which is backed by a json-faile. The json-file contains +// AESEncryptedStorage is a storage type which is backed by a json-file. The json-file contains // key-value mappings, where the keys are _not_ encrypted, only the values are. type AESEncryptedStorage struct { // File to read/write credentials |