Skip to content

Commit 808202d

Browse files
committed
fix: fix wrong link
1 parent 8f91019 commit 808202d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/en/intro.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Here's the list of changes to the documentation between each update. You can vie
4949
- Adds [Velocity](./velocity_intro) page to outline how to set up the CommandAPI for Velocity
5050
- Updates [CommandArguments](./create-commands/arguments/command-arguments) to document new additions for safe arguments
5151
- Updates [Potion effect arguments](./argument_potion) to include examples for the newly added `NamespacedKey` variant for the `PotionEffectArgument`
52-
- Updates [Arguments](./create-commands/arguments/command-arguments) to list the newly added `PotionEffectArgument.NamespacedKey` argument
52+
- Updates [Arguments](./create-commands/arguments/arguments) to list the newly added `PotionEffectArgument.NamespacedKey` argument
5353
- Updates [Particles](./argument_particles) page to include both [old particle information](./argument_particle_old) and [new particle information](./argument_particle_new)
5454

5555
### 9.2.0 → 9.3.0
@@ -80,7 +80,7 @@ Here's the list of changes to the documentation between each update. You can vie
8080

8181
### 9.0.0 → 9.0.1
8282

83-
- Updates [Optional arguments](./optional_arguments) page to update the method list for avoiding `null` values
83+
- Updates [Optional arguments](./create-commands/arguments/optional-arguments) page to update the method list for avoiding `null` values
8484
- Updates [Normal command executors](./create-commands/executors/normal-executors) page to now mention the existence of the `ExecutionInfo`
8585

8686
### 8.8.0 → 9.0.0
@@ -89,7 +89,7 @@ Here's the list of changes to the documentation between each update. You can vie
8989
9.0.0 is a giant update that is incompatible with 8.8.x and prior versions. A lot of the documentation's code examples and explanations have been changed for the various changes made in this version. Please read the [Upgrading guide](./upgrading) for information on how to upgrade to 9.0.0.
9090
:::
9191

92-
- Adds the new [Optional arguments](./optional_arguments) section
92+
- Adds the new [Optional arguments](./create-commands/arguments/optional-arguments) section
9393
- Adds Kotlin DSL code examples to all code examples
9494

9595
### 8.7.0 → 8.8.0
@@ -240,7 +240,7 @@ The Maven/Gradle repository URL has changed! See [5. Setting up your development
240240

241241
- Adds a section [6. Using the annotation system](./setup_annotations) on setting up your development environment to use the annotation system
242242
- Adds a whole massive section on using annotations ([16. Annotation-based commands](./annotationsintro), [17. Annotations](./annotations), [18. Registering annotation-based commands](./registeringannotations))
243-
- Adds a section on argument suggestion deferral in section [9.1. Argument suggestions](./argumentsuggestions#argument-suggestion-deferral)
243+
- Adds a section on argument suggestion deferral in section [9.1. Argument suggestions](./create-commands/arguments/suggestions/suggestions)
244244
- Improve warning for `LiteralArgument` - instead of it being "obsolete" compared to the `MultiLiteralArgument`, it is now "more complex" than `MultiLiteralArgument`s
245245
- Fix issue in the section for custom arguments which should have been updated but wasn't
246246

@@ -271,7 +271,7 @@ Every page has been rewritten in this update and checked for errors. In general,
271271
- Mentions listed arguments in section [9.11.1. Literal arguments](./argument_literal)
272272
- Section [15. Command conversion](./conversion) has been rewritten
273273
- Executes native is now present in the command registration page
274-
- Section [8.3. Argument suggestions with tooltips](./tooltips) now mentions the `IStringTooltip` class
274+
- Section [8.3. Argument suggestions with tooltips](./create-commands/arguments/suggestions/tooltips) now mentions the `IStringTooltip` class
275275

276276
### 4.2 → 4.3
277277

@@ -288,7 +288,7 @@ Every page has been rewritten in this update and checked for errors. In general,
288288

289289
### 4.0 → 4.1
290290

291-
- Adds a new section [7.3. Argument suggestions with tooltips](./tooltips)
291+
- Adds a new section [7.3. Argument suggestions with tooltips](./create-commands/arguments/suggestions/tooltips)
292292
- Adds documentation for the `MultiLiteralArgument` in section [8.11.2. Multi literal arguments](./argument_multiliteral)
293293
- Adds a new section [4. Shading the CommandAPI into your plugins](./dev-setup/shading)
294294
- Update documentation for [14. Brigadier + CommandAPI](./brigadier) with new (overloaded) function `argBuildOf`
@@ -301,8 +301,8 @@ Every page has been rewritten in this update and checked for errors. In general,
301301
- Updated [3. Setting up your development environment](./dev-setup/setup) to include new Maven repository links
302302
- Fixed stronkage with Java versions - there's now no random warning boxes about incompatibility with Java 12!
303303
- Arguments now include pictures that showcase how they work!
304-
- Reorganised the sections - arguments is now split up into two sections: [6. Arguments (in general)](./create-commands/arguments/command-arguments) and [7. Argument types](./argumenttypes)
305-
- Adds documentation for [6.2. Safe argument suggestions](./safeargumentsuggestions)
304+
- Reorganised the sections - arguments is now split up into two sections: [6. Arguments (in general)](./create-commands/arguments/arguments) and [7. Argument types](./argumenttypes)
305+
- Adds documentation for [6.2. Safe argument suggestions](./create-commands/arguments/suggestions/safe-suggestions)
306306
- Adds documentation for [7.8.3. BlockState arguments](./argument_blockstate)
307307
- Adds documentation for new arguments:
308308
- `UUIDArgument`: [7.8.14. UUID arguments](./argument_uuid)
@@ -329,12 +329,12 @@ Every page has been rewritten in this update and checked for errors. In general,
329329

330330
### 3.0 → 3.1
331331

332-
- Adds new section [5.1 Argument suggestions](./argumentsuggestions) to cover how to override suggestions - Having it all in section _5. Arguments_ was a bit too content-heavy
333-
- Adds documentation for the new `.overrideSuggestions()` method in section [5.1 Argument suggestions](./argumentsuggestions#suggestions-depending-on-previous-arguments)
332+
- Adds new section [5.1 Argument suggestions](./create-commands/arguments/suggestions/suggestions) to cover how to override suggestions - Having it all in section _5. Arguments_ was a bit too content-heavy
333+
- Adds documentation for the new `.overrideSuggestions()` method in section [5.1 Argument suggestions](./create-commands/arguments/suggestions/suggestions)
334334
- Simplified the description of the documentation updates
335335
- Changed the artifact ID for the dependency of the CommandAPI. Instead of being `commandapi`, it is now `commandapi-core`. You can view the changes in section [2 Setting up your development environment](./dev-setup/setup)
336336
- Changed the repository information for gradle in section [2 Setting up your development environment](./dev-setup/setup). You now have to include the NBTAPI repository because gradle can't automatically detect this for some reason. Kinda stupid tbh.
337-
- Adds a section on using multiple or optional arguments in section [5 Arguments](./create-commands/arguments/command-arguments)
337+
- Adds a section on using multiple or optional arguments in section [5 Arguments](./create-commands/arguments/arguments)
338338

339339
### 2.1 → 3.0
340340

@@ -347,7 +347,7 @@ Lots of changes occurred in version 3.0. I highly recommend reading the [Upgradi
347347
- Dependency section ([2. Setting up your development environment](./dev-setup/setup)) updated to use the new dependency Group ID
348348
- Command registration section ([3. Command registration](./create-commands/registration)) updated to reflect new API changes
349349
- Command execution section ([4. Command Executors](./create-commands/executors/command-executors)) updated to reflect new API changes
350-
- Arguments section ([5. Arguments](./create-commands/arguments/command-arguments)) completely rewritten to reflect new API changes. Adds more detailed examples for each argument
350+
- Arguments section ([5. Arguments](./create-commands/arguments/arguments)) completely rewritten to reflect new API changes. Adds more detailed examples for each argument
351351
- Function arguments section ([6.3 Function Arguments](./argument_function)) updated to reflect new API changes
352352
- Permissions section ([7. Permissions](./permissions)) updated to reflect new API changes
353353
- Aliases section ([8. Aliases](./aliases)) updated to reflect new API changes

0 commit comments

Comments
 (0)