You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ne...@apache.org on 2018/06/25 22:07:07 UTC

[trafficcontrol] 08/12: Fix format within README of java api client

This is an automated email from the ASF dual-hosted git repository.

neuman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git

commit a47734e9a8aba4a92a9de4d993ee7c19ae1b4e07
Author: nerdynick <ne...@gmail.com>
AuthorDate: Thu May 17 12:12:47 2018 -0600

    Fix format within README of java api client
---
 traffic_control/clients/java/trafficops/README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/traffic_control/clients/java/trafficops/README.md b/traffic_control/clients/java/trafficops/README.md
index 21211a4..cb784c5 100644
--- a/traffic_control/clients/java/trafficops/README.md
+++ b/traffic_control/clients/java/trafficops/README.md
@@ -6,7 +6,7 @@ Simple Java API client for communicating with the TrafficOps API
 
 ### Create Traffic Ops session
 
-*Using a provided URI*
+**Using a provided URI**
 
 ```java
 //Construct TrafficOps Session
@@ -15,7 +15,7 @@ final TOSession.Builder toSessionBuilder = TOSession.builder()
 	.fromURI(trafficOpsUri);
 final TOSession toSession = toSessionBuilder.build();
 ```
-*Explicitly set properties *
+**Explicitly set properties**
 
 ```java
 //Construct TrafficOps Session
@@ -45,13 +45,13 @@ try {
 
 ### Getting a list of All Servers
 
-*Synchronously*
+**Synchronously**
 
 ```java
 final CollectionResponse response = toSession.getServers().get();
 ```
 
-*Asynchronously*
+**Asynchronously**
 
 ```java
 toSession