Skip to content

Commit 8324889

Browse files
committed
Apply grammatical typo/fixes from Copilot
1 parent 0aa4521 commit 8324889

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ Checkstyle uses the HMCTS `checkstyle.xml`, enforcing naming, formatting, Javado
2222

2323
### Run Checkstyle
2424

25-
`./gradlew checkstyleMain
26-
./gradlew checkstyleTest`
25+
`./gradlew checkstyleMain`
26+
or
27+
`./gradlew checkstyleTest`
2728

28-
### Run all Checkstyle tasks
29+
### Run ALL Checkstyle tasks
2930

3031
`./gradlew checkstyle`
3132

@@ -123,7 +124,6 @@ This runs:
123124
### Gradle Daemon: Stop the Daemon and Force a Clean Run
124125

125126
**Step 1: Forcefully stop all running Gradle daemons.**
126-
Forcefully stop all running Gradle daemons.
127127
This command tells Gradle to find any background processes it has running and terminate them.
128128
```Bash
129129
./gradlew --stop
@@ -132,7 +132,7 @@ This command tells Gradle to find any background processes it has running and te
132132
**Step 2: Run a clean build.**
133133
The clean task deletes the entire build directory. This removes any old, compiled artifacts and cached results, ensuring nothing stale is left over. We will combine it with the checkstyleMain task.
134134
```Bash
135-
./gradlew clean <checkstyleMain>
135+
./gradlew clean [checkstyleMain]
136136
```
137137

138138
----------

0 commit comments

Comments
 (0)