From d9fd2a98bee1fb583f4eefe6cd628b13a43bf894 Mon Sep 17 00:00:00 2001 From: Martin Pergler <48919900+Houska1@users.noreply.github.com> Date: Thu, 29 Jul 2021 17:42:20 -0400 Subject: [PATCH] Simplify per review Co-authored-by: Nyall Dawson --- resources/function_help/json/sinuosity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/function_help/json/sinuosity b/resources/function_help/json/sinuosity index 7add34894c0..8a0f2a80ede 100644 --- a/resources/function_help/json/sinuosity +++ b/resources/function_help/json/sinuosity @@ -4,7 +4,7 @@ "groups": ["GeometryGroup"], "description": "Returns the sinuosity of a curve, which is the ratio of the curve length to the straight (2D) distance between its endpoints.", "arguments": [ - {"arg":"geometry", "description": "Curve (circularstring, linestring) whose sinuosity to evaluate"} + {"arg":"geometry", "description": "Input curve (circularstring, linestring)"} ], "examples": [ { "expression":"round(sinuosity(geom_from_wkt('LINESTRING(2 0, 2 2, 3 2, 3 3)')), 3)", "returns":"1.265"},