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: