From f3c9c7741318c91e9978d0f12f0b2702130b3167 Mon Sep 17 00:00:00 2001 From: "V.L" Date: Mon, 14 Jan 2019 20:49:00 -0500 Subject: [PATCH] Added word on line 12 (#33392) I added the word "the" before "collision" on line 12. --- guide/english/blockchain/basic-implementation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/blockchain/basic-implementation/index.md b/guide/english/blockchain/basic-implementation/index.md index 3e12a9efc6..9b1d9c3857 100644 --- a/guide/english/blockchain/basic-implementation/index.md +++ b/guide/english/blockchain/basic-implementation/index.md @@ -9,7 +9,7 @@ title: Basic blockchain implementation ## Quick explanation: Blockchain is a list of blocks with "every block contain verified content of the previous block". -Then we use collision-free attribute of the cryptographic hash function to verify "the content of the previous block". +Then we use the collision-free attribute of the cryptographic hash function to verify "the content of the previous block". This example will use SHA256 hash function, and use built-in ArrayList type of Java. ## Basic struture: