Skip to content

Commit 9b0b3f6

Browse files
committed
Fix typo
1 parent 6447e80 commit 9b0b3f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

book/src/02_development/03_local_release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ These are instructions for releasing the [EDR NPM package](../../crates/edr_napi
66
2. Go to the [edr_napi](../../crates/edr_napi/) directory.
77
3. Run `pnpm build`.
88
4. Look for the NAPI binary that was built for your platform. It has the format `edr.<PLATFORM>.node`. For example on Apple Silicon Macs, it's called `edr.darwin-arm64.node`.
9-
5. Move the NAPI binary to the appropriate platform-specifc package in the [npm](../../crates/edr_napi/npm) directory. For example, on Apple Silicon Macs: `mv edr.darwin-arm64.node npm/darwin-arm64`.
9+
5. Move the NAPI binary to the appropriate platform-specific package in the [npm](../../crates/edr_napi/npm) directory. For example, on Apple Silicon Macs: `mv edr.darwin-arm64.node npm/darwin-arm64`.
1010
6. Complete the Verdaccio [publish steps](./02_verdaccio.md#usage) in the [edr_napi](../../crates/edr_napi/) directory. You can ignore the warnings about not finding NAPI binaries for other platforms.

crates/edr_eth/src/access_list.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Part of this code was adapted from ethers-rs and is distributed under their
2-
// licenss:
2+
// license:
33
// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-APACHE
44
// - https://github.com/gakonst/ethers-rs/blob/cba6f071aedafb766e82e4c2f469ed5e4638337d/LICENSE-MIT
55
// For the original context see: https://github.com/gakonst/ethers-rs/blob/3d9c3290d42b77c510e5b5d0b6f7a2f72913bfff/ethers-core/src/types/transaction/eip2930.rs

crates/edr_eth/src/account.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Part of this code was adapted from foundry and is distributed under their
2-
// licenss:
2+
// license:
33
// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-APACHE
44
// - https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/LICENSE-MIT
55
// For the original context see: https://github.com/foundry-rs/foundry/blob/01b16238ff87dc7ca8ee3f5f13e389888c2a2ee4/anvil/core/src/eth/proof.rs

packages/hardhat-core/test/internal/hardhat-network/stack-traces/test-files/0_6/revert-without-message/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
Starting from solc 0.6.3, `revert`s and `require`s without an error message don't have an associated sourcemap. See [this issue](https://github.com/ethereum/solidity/issues/9006).
44

5-
The tests in `solc-before-0.6.3` produce the same result as the equivalent tests in the main directory, even if the erorr message is missing, since in those versions the source maps work fine.
5+
The tests in `solc-before-0.6.3` produce the same result as the equivalent tests in the main directory, even if the error message is missing, since in those versions the source maps work fine.
66

77
The tests in `solc-after-0.6.3` produce a less complete stack trace that also warns the users to upgrade the compiler and use error messages.

0 commit comments

Comments
 (0)