Skip to content

Commit

Permalink
fix: a couple of spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed May 24, 2024
1 parent b96217a commit e798774
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//! let reader = Reader::from_path("tests/data/autzen.las").unwrap();
//! ```
//!
//! Ccompressed files are supported when using the feature "laz":
//! Compressed files are supported when using the feature "laz":
//!
//! ```
//! use las::Reader;
Expand Down Expand Up @@ -215,8 +215,9 @@ pub struct Reader<'a> {
impl<'a> Reader<'a> {
/// Creates a new reader.
///
/// This does *not* wrap the `Read` in a `BufRead`, so if you're concered about performance you
/// should do that wrapping yourself (or use `from_path`).
/// This does *not* wrap the `Read` in a `BufRead`, so if you're concerned
/// about performance you should do that wrapping yourself (or use
/// `from_path`).
///
/// # Examples
///
Expand Down

0 comments on commit e798774

Please sign in to comment.