Skip to content

Commit b18e3dd

Browse files
authored
minor fixes to new README content
* `gradle run` does not need -q as quiet is the default now (as per gradle-wrapper.properties) * s/firt/first/
1 parent 755837f commit b18e3dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,21 @@ $ java -cp classes com.williamfiset.algorithms.search.BinarySearch
4040

4141
## Running with Gradle
4242

43-
This project supports the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html). The Gradle wrapper automatically downloads Gradle at the first time it runs, so expect a delay when running the firt command below.
43+
This project supports the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html). The Gradle wrapper automatically downloads Gradle at the first time it runs, so expect a delay when running the first command below.
4444

4545
If you are on Windows, use `gradlew.bat` instead of `./gradlew` below.
4646

4747

4848
Run a single algorithm like this:
4949

5050
```
51-
./gradlew -q run -Palgorithm=<algorithm-subpackage>.<algorithm-class>
51+
./gradlew run -Palgorithm=<algorithm-subpackage>.<algorithm-class>
5252
```
5353

5454

5555
Alternatively, you can run a single algorithm specifying the full class name
5656
```
57-
./gradlew -q run -Pmain=<algorithm-fully-qualified-class-name>
57+
./gradlew run -Pmain=<algorithm-fully-qualified-class-name>
5858
5959
```
6060

0 commit comments

Comments
 (0)