Skip to content

Commit 8112b64

Browse files
committed
fix: fix some docs
1 parent 8125857 commit 8112b64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/en/user-setup/command-conversion/single-command-with-args.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Using this, we can display options, such as "fly" and "walk", as well as optiona
5252
5353
![A command "/execute run speed" with argument suggestions for entity selectors, as well as "fly" and "walk"](/images/speedoptions.png)
5454
55-
Additionally, we can apply limits to the numbers that can be provided. For example, here we limit the number to a value between 0 to 10. If a value is outside of that range, and error is shown to the user:
55+
Additionally, we can apply limits to the numbers that can be provided. For example, here we limit the number to a value between 0 and 10. If a value is outside of that range, and error is shown to the user:
5656
5757
![A command "/execute run speed walk 15" with an error displaying `"Long must not be more than 10, found 15 at position 24: ...peed walk <--[HERE]`](/images/speedlimit.png)
5858
@@ -99,7 +99,7 @@ The name in the argument can be whatever you want, but it is recommended to keep
9999
| `brigadier:string` | A single word |
100100
| `minecraft:block_pos` | A location of x, y and z coordinates (whole numbers) |
101101

102-
In the example above, we used the a "range type" in the form `[0..10]`. This is a special argument type that will conform to `brigader:long` or `brigader:double` and apply a limit to the values that can be entered.
102+
In the example above, we used the "range type" in the form `[0..10]`. This is a special argument type that will conform to `brigader:long` or `brigader:double` and apply a limit to the values that can be entered.
103103

104104
::: tip Example – Declaring "range type" arguments
105105

0 commit comments

Comments
 (0)