From 2896cbb2875bd4de10450ced9b505d1dbf203429 Mon Sep 17 00:00:00 2001 From: Mario de Frutos Date: Fri, 12 Feb 2016 11:22:29 +0100 Subject: [PATCH] Fixed more typos in the reference docs --- doc/reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/reference.md b/doc/reference.md index dd46974..8b5c707 100644 --- a/doc/reference.md +++ b/doc/reference.md @@ -357,7 +357,7 @@ Name | Type | Description ```bash SELECT cdb_isodistance('010100000000000000008006C00DEB9D3C72F44340', 'car', ARRAY[1000,2000]::integer[]); -SELECT cdb_isodistance('010100000000000000008006C00DEB9D3C72F44340', 'walk', ARRAY[1000]::integer[], ARRAY['mode_traffic=enabled,quality=3']::text[]); +SELECT cdb_isodistance('010100000000000000008006C00DEB9D3C72F44340', 'walk', ARRAY[1000]::integer[], ARRAY['mode_traffic=enabled','quality=3']::text[]); ``` ### cdb_isochrone(_source geometry, mode text, range integer[], options text[]_) @@ -370,5 +370,5 @@ This function uses the same parameters and info as the `cdb_isodistance` functio ```bash SELECT cdb_isochrone('010100000000000000008006C00DEB9D3C72F44340', 'car', ARRAY[300,900,12000]::integer[]); -SELECT cdb_isodistance('010100000000000000008006C00DEB9D3C72F44340', 'walk', ARRAY[300,900]::integer[], ARRAY['mode_traffic=enabled,quality=3']::text[]); +SELECT cdb_isodistance('010100000000000000008006C00DEB9D3C72F44340', 'walk', ARRAY[300,900]::integer[], ARRAY['mode_traffic=enabled','quality=3']::text[]); ```