Skip to content

Commit 4ba6fe5

Browse files
authored
fix typos (#248)
1 parent 7dc0c95 commit 4ba6fe5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/stream_reader_writer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn main() -> Result<(), Box<dyn Error>> {
2828
};
2929

3030
let mut writer = {
31-
let file_writer = BufWriter::new(File::create("example-output-contries.geojson")?);
31+
let file_writer = BufWriter::new(File::create("example-output-countries.geojson")?);
3232
FeatureWriter::from_writer(file_writer)
3333
};
3434

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@
268268
//! # }
269269
//! ```
270270
//!
271-
//! If you wish to produce a [`FeatureCollection`] from a homogenous collection of `geo-types`, a
271+
//! If you wish to produce a [`FeatureCollection`] from a homogeneous collection of `geo-types`, a
272272
//! `From` impl is provided for `geo_types::GeometryCollection`:
273273
//!
274274
//! ```rust

0 commit comments

Comments
 (0)