We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4414a57 + 1c05298 commit e19aaa7Copy full SHA for e19aaa7
1 file changed
content/introduction/sha256.md
@@ -17,12 +17,12 @@ func main() {
17
h := sha256.New()
18
h.Write([]byte(s))
19
res := h.Sum(nil)
20
- fmt.Printf("sha245(`hello world`) = %x\n", res)
+ fmt.Printf("sha256(`hello world`) = %x\n", res)
21
}
22
23
// $ go run main.go
24
// 输出如下
25
/**
26
sha256(`hello world`) = b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9
27
*/
28
-```
+```
0 commit comments