Skip to content

Commit f66b423

Browse files
authored
Merge pull request #47 from jshawl/fix-typo
fix typos
2 parents c28f6a1 + 6fafd8c commit f66b423

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/ssh_data/public_key/dsa.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def initialize(algo:, p:, q:, g:, y:)
6767
# Verify an SSH signature.
6868
#
6969
# signed_data - The String message that the signature was calculated over.
70-
# signature - The binarty String signature with SSH encoding.
70+
# signature - The binary String signature with SSH encoding.
7171
#
7272
# Returns boolean.
7373
def verify(signed_data, signature)

lib/ssh_data/public_key/ecdsa.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def initialize(algo:, curve:, public_key:)
9393
# Verify an SSH signature.
9494
#
9595
# signed_data - The String message that the signature was calculated over.
96-
# signature - The binarty String signature with SSH encoding.
96+
# signature - The binary String signature with SSH encoding.
9797
#
9898
# Returns boolean.
9999
def verify(signed_data, signature)

lib/ssh_data/public_key/ed25519.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def initialize(algo:, pk:)
3737
# Verify an SSH signature.
3838
#
3939
# signed_data - The String message that the signature was calculated over.
40-
# signature - The binarty String signature with SSH encoding.
40+
# signature - The binary String signature with SSH encoding.
4141
#
4242
# Returns boolean.
4343
def verify(signed_data, signature)

lib/ssh_data/public_key/rsa.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def initialize(algo:, e:, n:)
2626
# Verify an SSH signature.
2727
#
2828
# signed_data - The String message that the signature was calculated over.
29-
# signature - The binarty String signature with SSH encoding.
29+
# signature - The binary String signature with SSH encoding.
3030
#
3131
# Returns boolean.
3232
def verify(signed_data, signature)

0 commit comments

Comments
 (0)