From 49ff4299c6628fcb0de831f4da1dd1a683305fa5 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 12 Mar 2018 12:42:14 +0100 Subject: Fix comments --- packages/deployer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/deployer/README.md') diff --git a/packages/deployer/README.md b/packages/deployer/README.md index 8b6f9799c..5f10b762b 100644 --- a/packages/deployer/README.md +++ b/packages/deployer/README.md @@ -39,7 +39,7 @@ Options: ## Migrations -You might want to write a migrations script (similar to `truffle migrate`), that deploys multiple contracts and configures them. Bellow you'll find a simplest example of such a script to help you get started. +You might want to write a migration scripts (similar to `truffle migrate`), that deploys multiple contracts and configures them. Below you'll find a simple example of such a script to help you get started. ``` import { Deployer } from '@0xproject/deployer'; @@ -50,7 +50,7 @@ const deployerOpts = { jsonrpcUrl: 'http://localhost:8545', networkId: 50, defaults: { - gas: '1000000', + gas: 1000000, }, }; @@ -61,7 +61,7 @@ const deployer = new Deployer(deployerOpts); })().catch(console.log); ``` -More sophisticated example can be found [here](https://github.com/0xProject/0x-monorepo/tree/development/packages/contracts/migrations) +A more sophisticated example can be found [here](https://github.com/0xProject/0x-monorepo/tree/development/packages/contracts/migrations) ## Contributing -- cgit v1.2.3