We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f903a commit afc167fCopy full SHA for afc167f
README.md
@@ -94,7 +94,7 @@ let data = b"Hello world!";
94
hasher.update(data);
95
// `update` can be called repeatedly and is generic over `AsRef<[u8]>`
96
hasher.update("String data");
97
-// Note that calling `result()` consumes hasher
+// Note that calling `finalize()` consumes hasher
98
let hash = hasher.finalize();
99
println!("Result: {:x}", hash);
100
```
0 commit comments