From 8b8e157e1b60c7b15624209abd295386eac7dd12 Mon Sep 17 00:00:00 2001 From: fredster33 <64927044+fredster33@users.noreply.github.com> Date: Wed, 11 Aug 2021 16:15:34 -0700 Subject: [PATCH] Fix typos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d8d76bf57..38549f84b 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,11 @@ EqualsVerifier uses [Prettier-Java](https://github.com/jhipster/prettier-java) t The `src/test` folder contains, apart from the regular `java` folder, some version-specific `javaXX` folders that target specific JDKs. For instance, the `src/test/java16` folder contains unit tests that test things related to records. A Maven profile automatically picks up these folders if the JDK that runs the tests has at least that version. `nl.jqno.equalsverifier.internal.architecture.TestPresenceTest` checks that the tests are indeed picked up when the JDK version matches. -## Signed Jar +## Signed JAR -The `lib/` folder contains a local Maven repository containing a signed jar, used to test potential ClassLoader issues +The `lib/` folder contains a local Maven repository containing a signed JAR, used to test potential ClassLoader issues
-Here's how to install a jar into it:
+Here's how to install a JAR into it:
 mvn org.apache.maven.plugins:maven-install-plugin:2.3.1:install-file \
                         -Dfile=<path-to-file> -DgroupId=<myGroup> \
@@ -58,7 +58,7 @@ mvn org.apache.maven.plugins:maven-install-plugin:2.3.1:install-file \
                         -Dpackaging=<myPackaging> -DcreateChecksum=true \
                         -DlocalRepositoryPath=lib
 
-The signed jar itself can be found in [this repo](https://github.com/jqno/equalsverifier-signedjar-test). +The signed JAR itself can be found in [this repo](https://github.com/jqno/equalsverifier-signedjar-test). # Disclaimer