Skip to content

Fix typos in documentation #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ which describes the SIMD process in detail.
This repository is for documenting standards and not for implementation help.
For specific questions and concerns regarding SIMDs, it's best to discuss them
in the [questions section](https://github.com/solana-foundation/solana-improvement-documents/discussions/categories/questions)
of this [repo's disucssion page](https://github.com/solana-foundation/solana-improvement-documents/discussions).
of this [repo's discussion page](https://github.com/solana-foundation/solana-improvement-documents/discussions).

## Access Policy

Expand Down
2 changes: 1 addition & 1 deletion proposals/0033-timely-vote-credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ latency".
Vote credits are the accounting method used to determine what percentage of
inflation rewards a validator earns on behalf of its stakers. Currently, when
a slot that a validator has previously voted on is "rooted", it earns 1 vote
credit. A "rooted" slot is one which has received full committment by the
credit. A "rooted" slot is one which has received full commitment by the
validator (i.e. has been finalized).

One problem with this simple accounting method is that it awards one credit
Expand Down
4 changes: 2 additions & 2 deletions proposals/0127-get-sysvar-syscall.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ will forever have the same size.
This prevents future upgrades that shrink or extend sysvars. In the same
spirit, if a new sysvar is created, a new syscall must be created.

Furthermore, if certain queries are requred by BPF programs - such as
Furthermore, if certain queries are required by BPF programs - such as
`SlotHashes::get_slot()` and `StakeHistory::get_entry()` - those single-element
retrievals will _also_ require new syscalls.

Expand All @@ -83,7 +83,7 @@ It's worth noting that at the time of this writing, the work required for
syscalls if the existing design is not ratified.

This tightly-coupled relationship between sysvars and syscalls will perpetually
swell the syscall interface as changes are made, making maintainence and
swell the syscall interface as changes are made, making maintenance and
reimplementation difficult.

## Alternatives Considered
Expand Down
Loading