Skip to content

Commit

Permalink
fix: Typos (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored Dec 7, 2024
1 parent caf7194 commit 157ff1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ See [`AsyncMediaSource`] & [`AsyncMediaParser`] for more information.
## GPS Info

`ExifIter` provides a convenience method for parsing gps information. (`Exif` &
`TrackInfo` also provide a `get_gps_info` mthod).
`TrackInfo` also provide a `get_gps_info` method).

```rust
use nom_exif::*;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
//! ## GPS Info
//!
//! `ExifIter` provides a convenience method for parsing gps information. (`Exif` &
//! `TrackInfo` also provide a `get_gps_info` mthod).
//! `TrackInfo` also provide a `get_gps_info` method).
//!
//! ```rust
//! use nom_exif::*;
Expand Down
2 changes: 1 addition & 1 deletion src/values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ impl EntryValue {
DataFormat::U8 => match components_num {
1 => Ok(Self::U8(data[0])),
x => Err(Error::Unsupported(format!(
"usigned byte with {x} components"
"unsigned byte with {x} components"
))),
},
DataFormat::Text => Ok(EntryValue::Text(
Expand Down

0 comments on commit 157ff1a

Please sign in to comment.