Skip to content

Commit d3187bb

Browse files
committed
Another try at fixing spelling
1 parent e8b7a3e commit d3187bb

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.typos.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,10 @@ extend-exclude = [
66
[default]
77
locale = "en-us"
88

9-
# These are needed for the Adventure documentation
10-
extend-ignore-words-re = [
11-
"`colour`",
12-
"`grey`",
13-
"`dark_grey`",
14-
"JuliGames(Core)?"
15-
]
16-
179
[default.extend-identifiers]
1810
Spectre = "Spectre" # ignore error, the vulnerability is named Spectre
11+
JuliGamesCode = "JuliGamesCore" # Project organization utilizing the Adventure library
12+
JuliGames = "JuliGames" # Project name utilizing the Adventure library
1913

2014
[default.extend-words]
2115
accessorise = "accessorize"
@@ -85,6 +79,9 @@ regionise = "regionize"
8579
regioniser = "regionizer"
8680
regionising = "regionizing"
8781
regionised = "regionized"
82+
color = "`colour`"
83+
gray = "`grey`"
84+
dark_gray = "`dark_grey`"
8885

8986
# exceptions:
9087

src/content/docs/adventure/community-libraries.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Luckily, many of our community members have produced libraries that complement A
1212

1313
This list of libraries is provided for reference only. The Kyori team does not endorse any specific ones, and cannot provide any information beyond the provided links.
1414

15-
If you have a library that you'd like included, please open a pull request on the [paper-docs](https://github.com/PaperMC/docs) repository.
15+
If you have a library that you'd like included, please open a pull request on the [papermc-docs](https://github.com/PaperMC/docs) repository.
1616

1717
:::
1818

src/content/docs/adventure/platform/implementing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ callback command is requested. The platform is responsible for ensuring any exec
4343
`ComponentLogger`, as part of the `adventure-text-logger-slf4j` module, provides a logging interface that extends SLF4J and wraps any existing SLF4J logger (compatible with
4444
v1 and v2). Platforms are responsible for providing the adapter that looks up the appropriate logger by name and serializes components to text.
4545

46-
This should involve performing any translations if necessary. The default behaviour of the logger is to serialize to plain text, but platforms may want to look at the
46+
This should involve performing any translations if necessary. The default behavior of the logger is to serialize to plain text, but platforms may want to look at the
4747
`/serializer/ansi` serializer instead for colored output.
4848

4949
### Boss Bars
@@ -53,7 +53,7 @@ In order to track viewers and link up to any internal state, the `BossBarImpleme
5353

5454
## Conventional behaviors
5555

56-
Some behaviours are expected by platforms beyond what is explicitly required by implementing certain interfaces. These are:
56+
Some behaviors are expected by platforms beyond what is explicitly required by implementing certain interfaces. These are:
5757

5858
* When implementing `Audience`, any unsupported operations should fail silently.
5959
* When sending components to a player, they should be passed through `GlobalTranslator` before sending to perform any translations (note: `GlobalTranslator` is only for

0 commit comments

Comments
 (0)