Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simpe typo fix in dma error type #305

Merged
merged 2 commits into from
Apr 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]

### Added

- Fixed typo in string representation in DMAError type
- Added an example of integration with RTIC.
- Added internal pullup configuaration for the AlternateOD pin type
- Added USART support for sending and receiving 9-bit words [#299]
Expand Down
2 changes: 1 addition & 1 deletion src/dma/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl<T> Debug for DMAError<T> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match self {
DMAError::NotReady(_) => f.debug_tuple("NotReady").finish(),
DMAError::SmallBuffer(_) => f.debug_tuple("SmalBuffer").finish(),
DMAError::SmallBuffer(_) => f.debug_tuple("SmallBuffer").finish(),
DMAError::Overrun(_) => f.debug_tuple("Overrun").finish(),
}
}
Expand Down