From eecbb5ca90192a28354efd817f1383ad674100ba Mon Sep 17 00:00:00 2001 From: Ali Mirlou Date: Tue, 20 Aug 2019 19:53:49 +0430 Subject: [PATCH] Fix small typo --- mongoengine/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongoengine/fields.py b/mongoengine/fields.py index 9b9fef6e..f8f527a3 100644 --- a/mongoengine/fields.py +++ b/mongoengine/fields.py @@ -2291,7 +2291,7 @@ class LineStringField(GeoJsonBaseField): .. code-block:: js {'type' : 'LineString' , - 'coordinates' : [[x1, y1], [x1, y1] ... [xn, yn]]} + 'coordinates' : [[x1, y1], [x2, y2] ... [xn, yn]]} You can either pass a dict with the full information or a list of points.