Skip to content

Commit d67f8fb

Browse files
committed
docs: fixed capitalization of MetaMask (ethers-io#2033).
1 parent 45f3675 commit d67f8fb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs.wrm/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ module.exports = {
237237
"link-infura": { name: "INFURA", url: "https:/\/infura.io" },
238238
"link-javascriptcore": { name: "JavaScriptCore", url: "https:/\/developer.apple.com/documentation/javascriptcore?language=objc" },
239239
"link-ledger": "https:/\/www.ledger.com",
240-
"link-metamask": { name: "Metamask", url: "https:/\/metamask.io/" },
240+
"link-metamask": { name: "MetaMask", url: "https:/\/metamask.io/" },
241241
"link-otto": "https:/\/github.com/robertkrimen/otto",
242242
"link-parity": { name: "Parity", url: "https:/\/www.parity.io" },
243243
"link-pocket": { name: "Pocket Network", url: "https:/\/pokt.network" },

docs.wrm/getting-started.wrm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $Contract: A Contract is an abstraction which represents a connection to a
7373
| **Contract** | $Contract |
7474

7575

76-
_subsection: Connecting to Ethereum: Metamask @<getting-started--connecting>
76+
_subsection: Connecting to Ethereum: MetaMask @<getting-started--connecting>
7777

7878
The quickest and easiest way to experiment and begin developing on
7979
Ethereum is to use [[link-metamask]], which is a browser extension
@@ -82,13 +82,13 @@ that provides:
8282
- A connection to the Ethereum network (a [[Provider]])
8383
- Holds your private key and can sign things (a [[Signer]])
8484

85-
_code: Connecting to Metamask @lang<script>
85+
_code: Connecting to MetaMask @lang<script>
8686

8787
// A Web3Provider wraps a standard Web3 provider, which is
88-
// what Metamask injects as window.ethereum into each page
88+
// what MetaMask injects as window.ethereum into each page
8989
const provider = new ethers.providers.Web3Provider(window.ethereum)
9090

91-
// The Metamask plugin also allows signing transactions to
91+
// The MetaMask plugin also allows signing transactions to
9292
// send ether and pay to change state within the blockchain.
9393
// For this, you need the account signer...
9494
const signer = provider.getSigner()

0 commit comments

Comments
 (0)