Skip to content

Commit b1cb54f

Browse files
authored
docs: typos fix in release notes (solana-foundation#3691)
* Update 0-30-1.mdx * Update 0-30-0.mdx * Update 0-29-0.mdx
1 parent acdaf9a commit b1cb54f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/content/docs/updates/release-notes/0-29-0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Anchor - Release Notes 0.29.0
66
Anchor keeps a
77
[CHANGELOG](https://github.com/coral-xyz/anchor/blob/master/CHANGELOG.md) but
88
it's not easy to make sense what has changed, what effect does the change have
9-
and how to migrate. This is where release notes comes in, an easy to digest and
9+
and how to migrate. This is where release notes come in, an easy to digest and
1010
actionable view for each release.
1111

1212
---

docs/content/docs/updates/release-notes/0-30-0.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ There are new account constraints for
115115
- `authority`
116116
- `program_id`
117117

118-
**Note:** Above values are concatinated with `::` (similar to other Anchor
118+
**Note:** Above values are concatenated with `::` (similar to other Anchor
119119
constraints) and have `extensions` prefix e.g.
120120
`extensions::group_pointer::authority = <EXPR>`.
121121

@@ -183,7 +183,7 @@ supports setting `--priority-fee` argument for the IDL commands. For example:
183183
anchor idl erase-authority --program-id <PROGRAM_ID> --priority-fee 9000
184184
```
185185

186-
When the `--priortiy-fee` argument is not specified, the median fee of the last
186+
When the `--priority-fee` argument is not specified, the median fee of the last
187187
150 confirmed slots is used.
188188

189189
### `--no-idl` flag on builds
@@ -245,7 +245,7 @@ get a warning if any of them don't match.
245245
### Explicit `overflow-checks` flag
246246

247247
[`overflow-checks`](https://doc.rust-lang.org/cargo/reference/profiles.html#overflow-checks)
248-
flag is implicitly disabled by default. Anchor workspaces that are crated with
248+
flag is implicitly disabled by default. Anchor workspaces that are created with
249249
`anchor init` have this flag enabled, however, Anchor doesn't do any checks for
250250
it after the initial workspace creation.
251251

docs/content/docs/updates/release-notes/0-30-1.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: 0.30.1
33
description: Anchor - Release Notes 0.30.1
44
---
@@ -134,7 +134,7 @@ To fix this problem, a new [crate](https://docs.rs/anchor-lang-idl-spec) that
134134
only includes the IDL spec has been introduced. The new crate's version will be
135135
used in the `idl.metadata.spec` field to differentiate between various IDLs.
136136

137-
**NOTE:** This crate is accesible via the main IDL crate from
137+
**NOTE:** This crate is accessible via the main IDL crate from
138138
[`anchor_lang_idl::types`](https://docs.rs/anchor-lang-idl/0.1.1/anchor_lang_idl/types/index.html).
139139

140140
## CLI
@@ -209,7 +209,7 @@ macro can now be used with legacy IDLs (pre Anchor v0.30).
209209
This works great as long as the program can be described correctly with the
210210
legacy IDL spec. However, if a program uses non-default features such as zero
211211
copy, or `repr` modifications, the declaration of the program either won't
212-
compile, or will be invalid. There are two main solutions in this scenerio:
212+
compile, or will be invalid. There are two main solutions in this scenario:
213213

214214
- Use the `idl convert` command, and manually fix the invalid parts
215215
- Generate the program's IDL by upgrading the program to Anchor v0.30

0 commit comments

Comments
 (0)