From 5e6ba79c0421820fb2ae65e68d5002f37d26b719 Mon Sep 17 00:00:00 2001 From: Randell Dawson Date: Thu, 20 Jun 2019 17:32:15 -0700 Subject: [PATCH] fix replace solidity with no language postfix --- guide/english/blockchain/smart-contracts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/blockchain/smart-contracts/index.md b/guide/english/blockchain/smart-contracts/index.md index 1207e0dc1b..59996dfecf 100644 --- a/guide/english/blockchain/smart-contracts/index.md +++ b/guide/english/blockchain/smart-contracts/index.md @@ -30,7 +30,7 @@ Smart contracts in Ethereum are written using Solidity. Solidity is a contract- Smart contracts in Hyperledger is called chaincode, and is written in Golang programming language. ## Hello World Smart Contract -```solidity +``` pragma solidity ^0.4.24; contract Hello { string public message;