Fix documentation error examples to match 'General Concepts' guidelines

This commit is contained in:
Raul Ochoa 2015-06-18 12:17:17 +02:00
parent d4f8578fd6
commit 63e19427af

View File

@ -528,7 +528,7 @@ curl -X POST \
<div class="code-title">Error</div> <div class="code-title">Error</div>
```javascript ```javascript
{ {
"error": "Some error string here" "errors" : ["Some error string here"]
} }
``` ```
@ -629,7 +629,7 @@ If a template with the same name does NOT exist, a 400 HTTP response is generate
```javascript ```javascript
{ {
"error": "error string here" "errors" : ["error string here"]
} }
``` ```
@ -658,7 +658,7 @@ curl -X DELETE 'https://documentation.cartodb.com/api/v1/map/named/:template_nam
<div class="code-title">RESPONSE</div> <div class="code-title">RESPONSE</div>
```javascript ```javascript
{ {
"error": "Some error string here" "errors" : ["Some error string here"]
} }
``` ```
@ -696,7 +696,7 @@ curl -X GET 'https://documentation.cartodb.com/api/v1/map/named?api_key=APIKEY'
<div class="code-title">ERROR</div> <div class="code-title">ERROR</div>
```javascript ```javascript
{ {
"error": "Some error string here" "errors" : ["Some error string here"]
} }
``` ```
@ -732,7 +732,7 @@ curl -X GET 'https://documentation.cartodb.com/api/v1/map/named/:template_name?a
<div class="code-title">ERROR</div> <div class="code-title">ERROR</div>
```javascript ```javascript
{ {
"error": "Some error string here" "errors" : ["Some error string here"]
} }
``` ```