aboutsummaryrefslogtreecommitdiff
path: root/docs/source/development
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-12-09 19:28:13 +0100
committerEven Rouault <even.rouault@spatialys.com>2020-12-09 19:28:27 +0100
commit372b5b74804b1d279c952f4a7811ade3e5815a35 (patch)
treeb2c60f3c24e74a22c77a2c5c94c4e79cc6abd914 /docs/source/development
parent29d2542cc37d404b9fdef0effe1e006f8969b1c5 (diff)
downloadPROJ-372b5b74804b1d279c952f4a7811ade3e5815a35.tar.gz
PROJ-372b5b74804b1d279c952f4a7811ade3e5815a35.zip
Doc: fix return data type of proj_trans_array()
Diffstat (limited to 'docs/source/development')
-rw-r--r--docs/source/development/reference/functions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst
index 32902916..df452032 100644
--- a/docs/source/development/reference/functions.rst
+++ b/docs/source/development/reference/functions.rst
@@ -364,7 +364,7 @@ Coordinate transformation
-.. c:function:: size_t proj_trans_array(PJ *P, PJ_DIRECTION direction, size_t n, PJ_COORD *coord)
+.. c:function:: int proj_trans_array(PJ *P, PJ_DIRECTION direction, size_t n, PJ_COORD *coord)
Batch transform an array of :c:type:`PJ_COORD`.
@@ -374,7 +374,7 @@ Coordinate transformation
:type `direction`: PJ_DIRECTION
:param n: Number of coordinates in :c:data:`coord`
:type n: `size_t`
- :returns: :c:type:`size_t` 0 if all observations are transformed without error, otherwise returns error number
+ :returns: :c:type:`int` 0 if all observations are transformed without error, otherwise returns error number
Error reporting