Skip to content

Commit c2f3334

Browse files
committed
reworded comment a bit to try and make it less confusing
1 parent d24e487 commit c2f3334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/web3swift/Convenience/Base58.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ struct Base58 {
6868
let string = base58.trimmingCharacters(in: CharacterSet.whitespaces)
6969
guard !string.isEmpty else { return [] }
7070

71-
// count leading "1"'s [decodes directly to zero bytes]
71+
// count leading ASCII "1"'s [decodes directly to binary zero bytes]
7272
var leadingZeros = 0
7373
for c in string {
7474
if c != "1" { break }

0 commit comments

Comments
 (0)