diff --git a/src/main/asciidoc/_chapters/external_apis.adoc b/src/main/asciidoc/_chapters/external_apis.adoc index 43a428a79cd..9a1acdc6302 100644 --- a/src/main/asciidoc/_chapters/external_apis.adoc +++ b/src/main/asciidoc/_chapters/external_apis.adoc @@ -126,7 +126,7 @@ http://example.com:8000//schema .Table Deletion To delete a table, use a `DELETE` request with the `/schema` endpoint: ---- -http://example.com:8000
/schema +http://example.com:8000/
/schema ---- .Table Regions @@ -142,7 +142,7 @@ http://example.com:8000/
/regions To get a single cell value, use a URL scheme like the following: ---- -http://example.com:8000
//://content:raw +http://example.com:8000/
//://content:raw ---- The column qualifier and timestamp are optional. Without them, the whole row will @@ -154,7 +154,7 @@ To get multiple single values, specify multiple column:qualifier tuples and/or a and end-timestamp. You can also limit the number of versions. ---- -http://example.com:8000
//:?v= +http://example.com:8000/
//:?v= ---- .Globbing Rows @@ -162,7 +162,7 @@ To scan a series of rows, you can use a `*` glob character on the value to glob together multiple rows. ---- -http://example.com:8000urls/https|ad.doubleclick.net|* +http://example.com:8000/urls/https|ad.doubleclick.net|* ---- ==== Puts @@ -173,8 +173,8 @@ For Puts, `PUT` and `POST` are equivalent. The column qualifier and the timestamp are optional. ---- -http://example.com:8000put/
//:/ -http://example.com:8000test/testrow/test:testcolumn +http://example.com:8000/put/
//:/ +http://example.com:8000/test/testrow/test:testcolumn ---- .Put Multiple Values @@ -195,7 +195,7 @@ success (201) or failure (anything else), and on successful scanner creation, th URI is returned which should be used to address the scanner. ---- -http://example.com:8000
/scanner +http://example.com:8000/
/scanner ---- .Scanner Get Next @@ -203,14 +203,14 @@ To get the next batch of cells found by the scanner, use the `/scanner//scanner/ +http://example.com:8000/
/scanner/ ---- .Scanner Deletion To delete resources associated with a scanner, send a HTTP `DELETE` request to the `/scanner/` endpoint. ---- -http://example.com:8000
/scanner/ +http://example.com:8000/
/scanner/ ---- [[xml_schema]] @@ -813,4 +813,4 @@ while 1: break print java.lang.String(result.row), java.lang.String(result.get('title:').value) ---- -==== \ No newline at end of file +====