pages*: fix small typos (#11850)

* pages*: fix small typos

* pages/*: make help and version commands consistent

* pages/*: follow "path/to/file" pattern

* nop: generic display help wording
This commit is contained in:
Vitor Henrique
2023-12-27 03:41:30 -03:00
committed by GitHub
parent 4e280a9efe
commit 61405c6e0e
67 changed files with 93 additions and 93 deletions

View File

@@ -5,11 +5,11 @@
- Compile a `.java` file:
`javac {{file.java}}`
`javac {{path/to/file.java}}`
- Compile several `.java` files:
`javac {{file1.java}} {{file2.java}} {{file3.java}}`
`javac {{path/to/file1.java}} {{path/to/file2.java}} {{path/to/file3.java}}`
- Compile all `.java` files in current directory:
@@ -17,4 +17,4 @@
- Compile a `.java` file and place the resulting class file in a specific directory:
`javac -d {{path/to/directory}} {{file.java}}`
`javac -d {{path/to/directory}} {{path/to/file.java}}`