From f393cb186ef8f6e69bab50957891a74f140340f5 Mon Sep 17 00:00:00 2001 From: Olusola Amoo Date: Sat, 25 Feb 2023 19:48:45 +0100 Subject: [PATCH] fix(blockchain-content): fix typo in blockchain solidity content (#3490) --- .../100-programming-languages/100-solidity.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/100-solidity.md b/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/100-solidity.md index fac9aee67..45e4966f3 100644 --- a/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/100-solidity.md +++ b/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/100-solidity.md @@ -2,8 +2,8 @@ Solidity is an object-oriented programming language created specifically by Ethereum Network team for constructing smart contracts on various blockchain platforms, most notably, Ethereum. -* It's used to create smart contracts that implements business logic and generate a chain of transaction records in the blochain system. -* It acts as a tool for creating machine-level code and compilling it on the Ethereum Vitural Machine (EVM). +* It's used to create smart contracts that implements business logic and generate a chain of transaction records in the blockchain system. +* It acts as a tool for creating machine-level code and compiling it on the Ethereum Vitural Machine (EVM). Like any other programming languages, Solidity also has variables, functions, classes, arithmetic operations, string manipulation, and many more.