Skip to content

Commit

Permalink
fix typos (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored Dec 13, 2024
1 parent 7dc0c95 commit 4ba6fe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/stream_reader_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn main() -> Result<(), Box<dyn Error>> {
};

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)
};

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4ba6fe5

Please sign in to comment.