Skip to content

Commit a43a7fb

Browse files
committed
List items don't end with a period
1 parent dc0ad40 commit a43a7fb

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

geo/src/lib.rs

+22-22
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! # Types
66
//!
7-
//! - **[`Coord`]**: A two-dimensional coordinate. All geometry types are composed of [`Coord`]s, though [`Coord`] itself is not a [`Geometry`] type.
7+
//! - **[`Coord`]**: A two-dimensional coordinate. All geometry types are composed of [`Coord`]s, though [`Coord`] itself is not a [`Geometry`] type
88
//! - **[`Point`]**: A single point represented by one [`Coord`]
99
//! - **[`MultiPoint`]**: A collection of [`Point`]s
1010
//! - **[`Line`]**: A line segment represented by two [`Coord`]s
@@ -87,7 +87,7 @@
8787
//! - **[`ClosestPoint`]**: Find the point on a geometry
8888
//! closest to a given point
8989
//! - **[`HaversineClosestPoint`]**: Find the point on a geometry
90-
//! closest to a given point on a sphere using spherical coordinates and lines being great arcs.
90+
//! closest to a given point on a sphere using spherical coordinates and lines being great arcs
9191
//! - **[`IsConvex`]**: Calculate the convexity of a
9292
//! [`LineString`]
9393
//! - **[`LineInterpolatePoint`]**:
@@ -106,14 +106,14 @@
106106
//! - **[`Intersects`]**: Calculate if a geometry intersects
107107
//! another geometry
108108
//! - **[`line_intersection`]**: Calculates the
109-
//! intersection, if any, between two lines.
109+
//! intersection, if any, between two lines
110110
//! - **[`Relate`]**: Topologically relate two geometries based on
111-
//! [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) semantics.
112-
//! - **[`Within`]**: Calculate if a geometry lies completely within another geometry.
111+
//! [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) semantics
112+
//! - **[`Within`]**: Calculate if a geometry lies completely within another geometry
113113
//!
114114
//! ## Triangulation
115115
//!
116-
//! - **[`TriangulateEarcut`](triangulate_earcut)**: Triangulate polygons using the earcut algorithm. Requires the `"earcutr"` feature, which is enabled by default.
116+
//! - **[`TriangulateEarcut`](triangulate_earcut)**: Triangulate polygons using the earcut algorithm. Requires the `"earcutr"` feature, which is enabled by default
117117
//!
118118
//! ## Winding
119119
//!
@@ -154,18 +154,18 @@
154154
//!
155155
//! - **[`Convert`]**: Convert (infalliby) the numeric type of a geometry’s coordinate value
156156
//! - **[`TryConvert`]**: Convert (falliby) the numeric type of a geometry’s coordinate value
157-
//! - **[`ToDegrees`]**: Radians to degrees coordinate transforms for a given geometry.
158-
//! - **[`ToRadians`]**: Degrees to radians coordinate transforms for a given geometry.
157+
//! - **[`ToDegrees`]**: Radians to degrees coordinate transforms for a given geometry
158+
//! - **[`ToRadians`]**: Degrees to radians coordinate transforms for a given geometry
159159
//!
160160
//! ## Miscellaneous
161161
//!
162162
//! - **[`Centroid`]**: Calculate the centroid of a geometry
163-
//! - **[`ChaikinSmoothing`]**: Smoothen `LineString`, `Polygon`, `MultiLineString` and `MultiPolygon` using Chaikin's algorithm.
163+
//! - **[`ChaikinSmoothing`]**: Smoothen `LineString`, `Polygon`, `MultiLineString` and `MultiPolygon` using Chaikin's algorithm
164164
//! - **[`proj`]**: Project geometries with the `proj` crate (requires the `use-proj` feature)
165-
//! - **[`LineStringSegmentize`]**: Segment a LineString into `n` segments.
166-
//! - **[`LineStringSegmentizeHaversine`]**: Segment a LineString using Haversine distance.
167-
//! - **[`Transform`]**: Transform a geometry using Proj.
168-
//! - **[`RemoveRepeatedPoints`]**: Remove repeated points from a geometry.
165+
//! - **[`LineStringSegmentize`]**: Segment a LineString into `n` segments
166+
//! - **[`LineStringSegmentizeHaversine`]**: Segment a LineString using Haversine distance
167+
//! - **[`Transform`]**: Transform a geometry using Proj
168+
//! - **[`RemoveRepeatedPoints`]**: Remove repeated points from a geometry
169169
//!
170170
//! # Spatial Indexing
171171
//!
@@ -179,22 +179,22 @@
179179
//! The following optional [Cargo features] are available:
180180
//!
181181
//! - `earcutr`:
182-
//! - Enables the `earcutr` crate, which provides triangulation of polygons using the earcut algorithm.
183-
//! - ☑ Enabled by default.
182+
//! - Enables the `earcutr` crate, which provides triangulation of polygons using the earcut algorithm
183+
//! - ☑ Enabled by default
184184
//! - `proj-network`:
185-
//! - Enables [network grid] support for the [`proj` crate].
185+
//! - Enables [network grid] support for the [`proj` crate]
186186
//! - After enabling this feature, [further configuration][proj crate file download] is required to use the network grid.
187-
//! - ☐ Disabled by default.
187+
//! - ☐ Disabled by default
188188
//! - `use-proj`:
189189
//! - Enables coordinate conversion and transformation of `Point` geometries using the [`proj` crate]
190-
//! - ☐ Disabled by default.
190+
//! - ☐ Disabled by default
191191
//! - `use-serde`:
192-
//! - Allows geometry types to be serialized and deserialized with [Serde].
193-
//! - ☐ Disabled by default.
192+
//! - Allows geometry types to be serialized and deserialized with [Serde]
193+
//! - ☐ Disabled by default
194194
//! - `multithreading`:
195195
//! - Enables multithreading support (via Rayon), and activates the `multithreading` flag
196-
//! in `geo-types`, enabling multi-threaded iteration over `Multi*` geometries.
197-
//! - ☑ Enabled by default.
196+
//! in `geo-types`, enabling multi-threaded iteration over `Multi*` geometries
197+
//! - ☑ Enabled by default
198198
//!
199199
//! # Ecosystem
200200
//!

0 commit comments

Comments
 (0)