diff options
author | Edward Betts <edward@4angle.com> | 2017-02-11 09:38:49 +0000 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-02-12 17:30:23 -0400 |
commit | c6e4dcca673841f29449c8c2bf85fa41b31da12f (patch) | |
tree | a0e16f9c52f6690be527044031607d97fae7d706 /Remote | |
parent | f765752568381ca2f003c08e9601fb2b5c397b5b (diff) |
correct spelling mistakes
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Helper/Encryptable.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Helper/Encryptable.hs b/Remote/Helper/Encryptable.hs index 029ac4b09..b72a60efa 100644 --- a/Remote/Helper/Encryptable.hs +++ b/Remote/Helper/Encryptable.hs @@ -70,7 +70,7 @@ encryptionSetup c gc = do (map ("encryption=" ++) ["none","shared","hybrid","pubkey", "sharedpubkey"]) ++ "." - key = fromMaybe (giveup "Specifiy keyid=...") $ M.lookup "keyid" c + key = fromMaybe (giveup "Specify keyid=...") $ M.lookup "keyid" c newkeys = maybe [] (\k -> [(True,k)]) (M.lookup "keyid+" c) ++ maybe [] (\k -> [(False,k)]) (M.lookup "keyid-" c) cannotchange = giveup "Cannot set encryption type of existing remotes." |