diff --git a/examples/stream_reader_writer.rs b/examples/stream_reader_writer.rs index 4ae17fd..b288678 100644 --- a/examples/stream_reader_writer.rs +++ b/examples/stream_reader_writer.rs @@ -28,7 +28,7 @@ fn main() -> Result<(), Box> { }; let mut writer = { - let file_writer = BufWriter::new(File::create("example-output-contries.geojson")?); + let file_writer = BufWriter::new(File::create("example-output-countries.geojson")?); FeatureWriter::from_writer(file_writer) }; diff --git a/src/lib.rs b/src/lib.rs index f7da524..88efc0a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -268,7 +268,7 @@ //! # } //! ``` //! -//! If you wish to produce a [`FeatureCollection`] from a homogenous collection of `geo-types`, a +//! If you wish to produce a [`FeatureCollection`] from a homogeneous collection of `geo-types`, a //! `From` impl is provided for `geo_types::GeometryCollection`: //! //! ```rust