Skip to content

Commit be13865

Browse files
authored
Fix syntax
1 parent 2271b09 commit be13865

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Compat.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ end
13121312

13131313
Base.isless(a::SHA256, b::SHA256) = isless(a.bytes, b.bytes)
13141314
Base.hash(a::SHA256, h::UInt) = hash((SHA256, a.bytes), h)
1315-
Base.==(a::SHA256, b::SHA256) = a.bytes == b.bytes
1315+
Base.:(==)(a::SHA256, b::SHA256) = a.bytes == b.bytes
13161316
end
13171317

13181318
include("deprecated.jl")

0 commit comments

Comments
 (0)