Skip to content

Commit 87f3dce

Browse files
docs: fix typos (wormhole-foundation#81)
1 parent c95f8af commit 87f3dce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Please read the [evm README] for more details.
5959

6060
### Solana
6161

62-
We have put tgoether the Solana directory assuming a program structure similar
62+
We have put together the Solana directory assuming a program structure similar
6363
to how `anchor init` creates your environment. Because of this, all of these
6464
programs are written assuming the [Anchor] framework. Here are the
6565
subdirectories:
@@ -160,7 +160,7 @@ different networks talk to each other can be modeled using networking
160160
designs like [ZeroMQ Messaging Patterns] for example.
161161

162162
If you have a new idea for an example, you should start by writing a whitepaper
163-
with some psuedocode at least (targeting specific blockchain development
163+
with some pseudocode at least (targeting specific blockchain development
164164
languages is preferred, though).
165165

166166
Here is the list of [new example issues].

docs/03_nft_burn_bridging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The [Solana program](https://docs.solana.com/terminology#program) which burns Me
3535

3636
The program supports:
3737
* an optional whitelist -- Passing a size argument of 0 to the `initialize` instruction disables the whitelist, otherwise it must be set to the size of the collection (there is no way to undo an initialization that used the wrong size argument!).
38-
* whitelisting (`whitelist` and `whitelist_bulk`) -- `whitelist` sets the corresponding bit of an NFT with the given token id to true and is hence more natural, while `whitelist_bulk` allows writing directly to the underlying bit array for a more efficient approach (primarily inteded for setting up the initial state of the whitelist).
38+
* whitelisting (`whitelist` and `whitelist_bulk`) -- `whitelist` sets the corresponding bit of an NFT with the given token id to true and is hence more natural, while `whitelist_bulk` allows writing directly to the underlying bit array for a more efficient approach (primarily intended for setting up the initial state of the whitelist).
3939
* delegating (`set_delegate`) -- Allows delegating admin functionality to a separate account (known as the delegate).
4040
* pausing (`set_paused`) -- So `burnAndSend` instructions will fail even if all other prerequisites are met.
4141

evm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Simply run `make` to install the necessary dependencies and build with forge, wh
2020

2121
## Test Suite
2222

23-
Run the Solidity-based unit tests with `make unit-test` and the local-validator integration tests via `make integration-test`, or simply `make test` to run both of of them.
23+
Run the Solidity-based unit tests with `make unit-test` and the local-validator integration tests via `make integration-test`, or simply `make test` to run both of them.
2424

2525
## Deployment
2626

0 commit comments

Comments
 (0)