Skip to content

Commit f45966a

Browse files
committed
Update fmt
1 parent 7f1c00e commit f45966a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/de.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//! ...
1919
//! }
2020
//! ```
21-
//!
21+
//!
2222
//! All fields in your struct other than `geometry` will be deserialized from the `properties` of the
2323
//! GeoJSON Feature.
2424
//!
@@ -68,7 +68,7 @@
6868
//! assert_eq!("Uptown", my_structs[1].name);
6969
//! assert_eq!(33.3, my_structs[1].geometry.x());
7070
//! ```
71-
//!
71+
//!
7272
//! # Reading *and* Writing GeoJSON
7373
//!
7474
//! This module is only concerned with _reading in_ GeoJSON. If you'd also like to write GeoJSON

src/feature_reader.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ impl<R: Read> FeatureReader<R> {
140140
/// }
141141
/// }
142142
/// ```
143-
///
143+
///
144144
/// If you're not using [`geo-types`](geo_types), you can deserialize to a `geojson::Geometry` instead.
145145
/// ```rust,ignore
146146
/// use serde::Deserialize;

src/feature_writer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ impl<W: Write> FeatureWriter<W> {
146146
///
147147
/// assert_eq_json(expected_output, &output);
148148
/// ```
149-
///
149+
///
150150
/// If you're not using [`geo-types`](geo_types), you can deserialize to a `geojson::Geometry` instead.
151151
/// ```rust,ignore
152152
/// use serde::Deserialize;

src/ser.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//! ...
1919
//! }
2020
//! ```
21-
//!
21+
//!
2222
//! All fields in your struct other than `geometry` will be serialized as `properties` of the
2323
//! GeoJSON Feature.
2424
//!
@@ -82,7 +82,7 @@
8282
//! #
8383
//! # assert_eq!(output_geojson, expected_geojson);
8484
//! ```
85-
//!
85+
//!
8686
//! # Reading *and* Writing GeoJSON
8787
//!
8888
//! This module is only concerned with Writing out GeoJSON. If you'd also like to read GeoJSON,

0 commit comments

Comments
 (0)