Fix all markdown language hints

This commit is contained in:
William Entriken 2019-11-27 20:15:30 -05:00
parent f22897b55c
commit 66ba683da0
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
The docker images are build locally on the developer machine: The docker images are build locally on the developer machine:
```!sh ```sh
cd .circleci/docker/ cd .circleci/docker/
docker build -t ethereum/solidity-buildpack-deps:ubuntu1904-<revision> -f Dockerfile.ubuntu1904 . docker build -t ethereum/solidity-buildpack-deps:ubuntu1904-<revision> -f Dockerfile.ubuntu1904 .
@ -21,7 +21,7 @@ where the image tag reflects the target OS and revision to build Solidity and ru
### Testing docker images locally ### Testing docker images locally
```!sh ```sh
cd solidity cd solidity
# Mounts your local solidity directory in docker container for testing # Mounts your local solidity directory in docker container for testing
docker run -v `pwd`:/src/solidity -ti ethereum/solidity-buildpack-deps:ubuntu1904-<revision> /bin/bash docker run -v `pwd`:/src/solidity -ti ethereum/solidity-buildpack-deps:ubuntu1904-<revision> /bin/bash

View File

@ -31,7 +31,7 @@ Instructions about how to build and install the Solidity compiler can be found i
A "Hello World" program in Solidity is of even less use than in other languages, but still: A "Hello World" program in Solidity is of even less use than in other languages, but still:
``` ```solidity
pragma solidity ^0.5.0; pragma solidity ^0.5.0;
contract HelloWorld { contract HelloWorld {