X Tutup
Skip to content

Commit 5e8378a

Browse files
author
Johan Brichau
committed
Correct method argument naming
1 parent a6dc3de commit 5e8378a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cryptography
2-
secureHashFor: aString
2+
secureHashFor: aStringOrByteArray
33
self subclassResponsibility
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cryptography
2-
secureHashFor: aString
3-
^ SHA1 new hashMessage: aString
2+
secureHashFor: aStringOrByteArray
3+
^ SHA1 new hashMessage: aStringOrByteArray

0 commit comments

Comments
 (0)
X Tutup