Skip to content

Commit 461f9f9

Browse files
committed
Fix markdownlint errors in test_setup.md
1 parent d2a8f88 commit 461f9f9

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

docssrc/src/test_setup.md

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,40 +51,39 @@ When you add the dependencies for MockBukkit and `commandapi-bukkit-test-toolkit
5151
</dependencies>
5252
```
5353

54-
5554
```groovy,Gradle_(build.gradle)
5655
dependencies {
57-
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
58-
testImplementation 'com.github.seeseemelk:MockBukkit-v1.21:3.128.0'
56+
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
57+
testImplementation 'com.github.seeseemelk:MockBukkit-v1.21:3.128.0'
5958
60-
testImplementation 'dev.jorel.commandapi-bukkit-test-toolkit:9.6.0-SNAPSHOT'
59+
testImplementation 'dev.jorel.commandapi-bukkit-test-toolkit:9.6.0-SNAPSHOT'
6160
62-
// May be the shade dependency and/or mojang-mapped
63-
implementation 'dev.jorel:commandapi-bukkit-plugin:9.6.0-SNAPSHOT'
61+
// May be the shade dependency and/or mojang-mapped
62+
implementation 'dev.jorel:commandapi-bukkit-plugin:9.6.0-SNAPSHOT'
6463
65-
// Can also be paper-api
66-
implementation 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
64+
// Can also be paper-api
65+
implementation 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
6766
68-
// See https://junit.org/junit5/ for latest version
69-
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
67+
// See https://junit.org/junit5/ for latest version
68+
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
7069
}
7170
```
7271

7372
```kotlin,Kotlin_Gradle_(build.gradle.kts)
7473
dependencies {
75-
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
76-
testImplementation('com.github.seeseemelk:MockBukkit-v1.21:3.128.0')
74+
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
75+
testImplementation('com.github.seeseemelk:MockBukkit-v1.21:3.128.0')
7776
78-
testImplementation('dev.jorel.commandapi-bukkit-test-toolkit:9.6.0-SNAPSHOT')
77+
testImplementation('dev.jorel.commandapi-bukkit-test-toolkit:9.6.0-SNAPSHOT')
7978
80-
// May be the shade dependency and/or mojang-mapped
81-
implementation('dev.jorel:commandapi-bukkit-plugin:9.6.0-SNAPSHOT')
79+
// May be the shade dependency and/or mojang-mapped
80+
implementation('dev.jorel:commandapi-bukkit-plugin:9.6.0-SNAPSHOT')
8281
83-
// Can also be paper-api
84-
implementation('org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT')
82+
// Can also be paper-api
83+
implementation('org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT')
8584
86-
// See https://junit.org/junit5/ for latest version
87-
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.8.2')
85+
// See https://junit.org/junit5/ for latest version
86+
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.8.2')
8887
}
8988
```
9089

0 commit comments

Comments
 (0)