Skip to content

Commit 264be49

Browse files
author
auxten
committed
Fix typo tab
1 parent 72766c4 commit 264be49

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bin/completion/cql-completion.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ _cql_help_version()
8787

8888
_cql()
8989
{
90-
COMPREPLY=()
90+
COMPREPLY=()
9191

9292
local word="${COMP_WORDS[COMP_CWORD]}"
9393
local prev="${COMP_WORDS[COMP_CWORD-1]}"

crypto/cipher.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func EncryptAndSign(inputPublicKey *asymmetric.PublicKey, inData []byte) ([]byte
5959
}
6060

6161
// DecryptAndCheck (inputPrivateKey, inData) MAIN PROCEDURE:
62-
// 1. Decrypt the inData
62+
// 1. Decrypt the inData
6363
// 2. Verify the HMAC.
6464
func DecryptAndCheck(inputPrivateKey *asymmetric.PrivateKey, inData []byte) ([]byte, error) {
6565
return ec.Decrypt((*ec.PrivateKey)(inputPrivateKey), inData)

0 commit comments

Comments
 (0)