| ... | ... | @@ -251,7 +251,7 @@ pub fn verifyContext( |
| 251 | 251 | errors = errors ++ lazy.err_invalid_hash_signature; |
| 252 | 252 | } |
| 253 | 253 | } else { |
| 254 | | errors = errors ++ lazy.prefix ++ @typeName(Context) ++ " must declare a hash function with signature " ++ lazy.hash_signature; |
| 254 | errors = errors ++ lazy.prefix ++ @typeName(Context) ++ " must declare a pub hash function with signature " ++ lazy.hash_signature; |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | // Verify Context.eql(self, PseudoKey, Key) => bool |
| ... | ... | @@ -335,7 +335,7 @@ pub fn verifyContext( |
| 335 | 335 | errors = errors ++ lazy.err_invalid_eql_signature; |
| 336 | 336 | } |
| 337 | 337 | } else { |
| 338 | | errors = errors ++ lazy.prefix ++ @typeName(Context) ++ " must declare a eql function with signature " ++ lazy.eql_signature; |
| 338 | errors = errors ++ lazy.prefix ++ @typeName(Context) ++ " must declare a pub eql function with signature " ++ lazy.eql_signature; |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | 341 | if (errors.len != 0) { |