From 63e19427afd6fbeb5fa5ee8504b1bfe5743b98a7 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Thu, 18 Jun 2015 12:17:17 +0200 Subject: [PATCH] Fix documentation error examples to match 'General Concepts' guidelines --- docs/Map-API.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/Map-API.md b/docs/Map-API.md index 2f9e30ec..31a54ecb 100644 --- a/docs/Map-API.md +++ b/docs/Map-API.md @@ -528,7 +528,7 @@ curl -X POST \
Error
```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 { - "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
RESPONSE
```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'
ERROR
```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
ERROR
```javascript { - "error": "Some error string here" + "errors" : ["Some error string here"] } ```