Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit ef44df9

Browse files
authored
Documentation Enhancements for Clarity and Accuracy in Solana Project (#5999)
* Fix typo in DAO Wallet section: change 'sill' to 'still' * Fix typo in 'Governance UI' and 'Build Locally' sections * Fixed grammatical errors and typo in documentation: Added 'the' before 'Solana blockchain', changed 'uses open/close architecture' to 'uses an open/close architecture', and corrected 'belows' to 'below'. * fix typo in SPL Noop Rust SDK section * Fix typo in Twisted ElGamal Encryption section * Revert "Fixed grammatical errors and typo in documentation: Added 'the' before 'Solana blockchain', changed 'uses open/close architecture' to 'uses an open/close architecture', and corrected 'belows' to 'below'." This reverts commit b018e1f. * fixed grammatical errors and typo in documentation: Added 'the' before 'Solana blockchain' and corrected 'belows' to 'below'.
1 parent 8e9dc13 commit ef44df9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

account-compression/programs/noop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# SPL Noop Rust SDK
88

9-
This is crate provides a wrapper for invoking `spl-noop`, which does nothing.
9+
This crate provides a wrapper for invoking `spl-noop`, which does nothing.
1010
It's primary use is circumventing log truncation when emitting application data by `invoke`-ing `spl-noop` with event data.
1111

1212
`spl-noop` and this crate's implementation are targeted towards supporting [account-compression](https://github.com/solana-labs/solana-program-library/tree/master/account-compression) and may be subject to change.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ npm install
1111

1212
### Local Development
1313

14-
This command starts a local development server and open up a browser window.
14+
This command starts a local development server and opens up a browser window.
1515
Most changes are reflected live without having to restart the server.
1616

1717
```

docs/src/confidential-token/deep-dive/encryption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ElGamal encryption scheme where a ciphertext is divided into two components:
1616
- A Pedersen commitment of the encrypted message. This component is independent
1717
of the public key.
1818
- A "decryption handle" that binds the encryption randomness with respect to a
19-
specific ElGamal public key. This component is independent of the actually
19+
specific ElGamal public key. This component is independent of the actual
2020
encrypted message.
2121

2222
The structure of the twisted ElGamal ciphertexts simplifies their design of some

docs/src/token-2022/extensions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ accounts through an extension model.
1313
This guide explains all of the available extensions, along with some examples of
1414
how to use them.
1515

16-
Please see the [Token-2022 Introduction](../token-2022) more general information
16+
Please see the [Token-2022 Introduction](../token-2022) for more general information
1717
about Token-2022 and the concept of extensions.
1818

1919
## Setup

governance/NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A DAO wallet is 1) PDA with no data, 2) derived from its governance account and
1616

1717
If the intention is to manage a program, you should use the DAO wallet as the admin auth in your program
1818

19-
*Note: as of 2022-09-17 the UI is not up-to-date and it is sill allowing users to create the deprecated asset specific governances.*
19+
*Note: as of 2022-09-17 the UI is not up-to-date and it is still allowing users to create the deprecated asset specific governances.*
2020

2121
### Signing transactions: Use the DAO Wallet
2222

governance/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPL Governance
22

33
SPL Governance is a program the chief purpose of which is to provide core building blocks and primitives to create
4-
Decentralized Autonomous Organizations (DAOs) on Solana blockchain.
4+
Decentralized Autonomous Organizations (DAOs) on the Solana blockchain.
55

66
The program is DAO type and asset type agnostic and can be used to build any type of DAOs
77
which can own and manage any type of assets.
@@ -56,7 +56,7 @@ There are two UIs available which showcase the programs capabilities:
5656

5757
It's a good starting point for developers to learn about the program and interact with it
5858

59-
- [Governance UI](https://github.com/solana-labs/governance-ui) project build together
59+
- [Governance UI](https://github.com/solana-labs/governance-ui) project built together
6060
with the [MNGO](https://mango.markets/) team: [governance-ui](https://realms.today)
6161

6262
This is advanced, user friendly and tasks oriented UI used by most of the existing DAOs on Solana
@@ -73,7 +73,7 @@ Discord server: [spl-governance-discord](https://discord.gg/VsPbrK2hJk)
7373

7474
## Program Accounts
7575

76-
The diagram belows shows an illustrative configuration of the program accounts when used to control upgrades
76+
The diagram below shows an illustrative configuration of the program accounts when used to control upgrades
7777
of multiple programs through proposals
7878

7979
![Accounts diagram](./resources/governance-accounts.jpg)

0 commit comments

Comments
 (0)