Skip to content

Commit f00444e

Browse files
Final checks
1 parent a69b106 commit f00444e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/install-guides/java.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,28 +33,28 @@ Below are some of the common methods that you can use to install Java. This incl
3333
Pick the one that works best for you.
3434

3535
{{% notice Note %}}
36-
The Java Technology Compatibility Kit (TCK) is a test suite that you can use to verify whether a Java implementation conforms to the Java SE Platform Specification. It's a crucial tool for ensuring that Java applications can run consistently across different platforms and implementations.
36+
The Java Technology Compatibility Kit (TCK) is a test suite that you can use to verify whether a Java implementation conforms to the Java SE Platform Specification. It is a crucial tool for ensuring that Java applications can run consistently across different platforms and implementations.
3737

3838
Check the [OCTLA Signatories List](https://openjdk.org/groups/conformance/JckAccess/jck-access.html) to see who has been granted access to the TCK.
3939
{{% /notice %}}
4040

4141
## Can I install Java using the Linux package manager?
4242

43-
For distributions using `apt` - including Debian and Ubuntu, you can install Java using this code:
43+
For distributions using `apt`, including Debian and Ubuntu, you can install Java using this code:
4444

4545
```console
4646
sudo apt update
4747
sudo apt install default-jre -y
4848
sudo apt install default-jdk -y
4949
```
5050

51-
For distributions using `dnf` - including Fedora and Red Hat, you can install Java using this code:
51+
For distributions using `dnf`, including Fedora and Red Hat, you can install Java using this code:
5252

5353
```console
5454
sudo dnf install java-latest-openjdk
5555
```
5656

57-
For distributions using `pacman` - including Arch and Manjaro, you can install Java using this code:
57+
For distributions using `pacman`, including Arch and Manjaro, you can install Java using this code:
5858

5959
```console
6060
sudo pacman -S jdk-openjdk
@@ -63,7 +63,7 @@ sudo pacman -S jre-openjdk
6363

6464
## Can I install Java using Snap?
6565

66-
For Linux distributions with `snap` you can install Java using this code:
66+
For Linux distributions using `snap`, you can install Java using this code:
6767

6868
```console
6969
sudo snap install openjdk
@@ -81,7 +81,7 @@ echo "deb [signed-by=/usr/share/keyrings/corretto-keyring.gpg] https://apt.corre
8181
sudo apt-get update; sudo apt-get install -y java-21-amazon-corretto-jdk
8282
```
8383

84-
More installation options for Corretto are available in the [Amazon Corretto 21 Guide for Linux](https://docs.aws.amazon.com/corretto/latest/corretto-21-ug/linux-info.html).
84+
You can find out more about the installation options for Corretto in the [Amazon Corretto 21 Guide for Linux](https://docs.aws.amazon.com/corretto/latest/corretto-21-ug/linux-info.html).
8585

8686
## How do I install the Microsoft Build of OpenJDK?
8787

0 commit comments

Comments
 (0)