Skip to content

Commit 22797ab

Browse files
authored
Apply suggestions from code review
Minor edits to improve acrolinx score
1 parent 59f5860 commit 22797ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-monitor/app/java-standalone-arguments.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ java -javaagent:path/to/applicationinsights-agent-3.2.7.jar -jar <myapp.jar>
2323

2424
## Spring Boot via Docker entry point
2525

26-
If you are using the *exec* form, add the parameter `"-javaagent:path/to/applicationinsights-agent-3.2.7.jar"` to the parameter list somewhere before the `"-jar"` parameter, for example:
26+
If you're using the *exec* form, add the parameter `"-javaagent:path/to/applicationinsights-agent-3.2.7.jar"` to the parameter list somewhere before the `"-jar"` parameter, for example:
2727

2828
```
2929
ENTRYPOINT ["java", "-javaagent:path/to/applicationinsights-agent-3.2.7.jar", "-jar", "<myapp.jar>"]
3030
```
3131

32-
If you are using the *shell* form, add the JVM arg `-javaagent:path/to/applicationinsights-agent-3.2.7.jar` somewhere before `-jar`, for example:
32+
If you're using the *shell* form, add the JVM arg `-javaagent:path/to/applicationinsights-agent-3.2.7.jar` somewhere before `-jar`, for example:
3333

3434
```
3535
ENTRYPOINT java -javaagent:path/to/applicationinsights-agent-3.2.7.jar -jar <myapp.jar>
@@ -66,7 +66,7 @@ Locate the file `<tomcat>/bin/catalina.bat`. Create a new file in the same dire
6666
set CATALINA_OPTS=%CATALINA_OPTS% -javaagent:path/to/applicationinsights-agent-3.2.7.jar
6767
```
6868

69-
Quotes are not necessary, but if you want to include them, the proper placement is:
69+
Quotes aren't necessary, but if you want to include them, the proper placement is:
7070

7171
```
7272
set "CATALINA_OPTS=%CATALINA_OPTS% -javaagent:path/to/applicationinsights-agent-3.2.7.jar"

0 commit comments

Comments
 (0)