From e523cbda1cb468d4b8d061f05082673512640557 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 22 Jun 2020 22:52:32 -0300 Subject: [PATCH] Fix capitalizaton of MetaMask (#114) The second 'M' was not capitalized. --- docs/guide/README.md | 2 +- docs/guide/create-dapp.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/README.md b/docs/guide/README.md index 2bd952cc562..6d552a6f4ed 100644 --- a/docs/guide/README.md +++ b/docs/guide/README.md @@ -7,7 +7,7 @@ Welcome to MetaMask’s Developer Documentation. This documentation is for learn - For up to the minute news, follow our [Peepeth](https://peepeth.com/MetaMask/), [Twitter](https://twitter.com/metamask_io) or [Medium](https://medium.com/metamask) pages. - To learn how to contribute to the MetaMask project itself, visit our [Internal Docs](https://github.com/MetaMask/metamask-extension/tree/develop/docs). -## Why Metamask +## Why MetaMask MetaMask was created out of the needs of creating more secure and usable Ethereum-based web sites. In particular, it handles account management and connecting the user to the blockchain. diff --git a/docs/guide/create-dapp.md b/docs/guide/create-dapp.md index 693aa3d9346..0ce8c8796fe 100644 --- a/docs/guide/create-dapp.md +++ b/docs/guide/create-dapp.md @@ -134,7 +134,7 @@ const initialize = () => { //------Inserted Code------\\ const MetamaskClientCheck = () => { - //Now we check to see if Metamask is installed + //Now we check to see if MetaMask is installed if (!isMetaMaskInstalled()) { //If it isn't installed we ask the user to click to install it onboardButton.innerText = 'Click here to install MetaMask!';