Skip to content

Commit c944f47

Browse files
committed
Fix typo
java -> Java
1 parent 2d80cfb commit c944f47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/service-fabric/service-fabric-debugging-your-application-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: devx-track-java
1414
1515
1. Start a local development cluster by following the steps in [Setting up your Service Fabric development environment](service-fabric-get-started-linux.md).
1616

17-
2. Update entryPoint.sh of the service you wish to debug, so that it starts the java process with remote debug parameters. This file can be found at the following location: `ApplicationName\ServiceNamePkg\Code\entrypoint.sh`. Port 8001 is set for debugging in this example.
17+
2. Update entryPoint.sh of the service you wish to debug, so that it starts the Java process with remote debug parameters. This file can be found at the following location: `ApplicationName\ServiceNamePkg\Code\entrypoint.sh`. Port 8001 is set for debugging in this example.
1818

1919
```sh
2020
java -Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n -Djava.library.path=$LD_LIBRARY_PATH -jar myapp.jar

0 commit comments

Comments
 (0)