Fix errors in doc comments

This commit is contained in:
Robert Sammelson 2023-05-31 21:23:54 -04:00
parent 13b9041511
commit db4b4d990d
No known key found for this signature in database
GPG key ID: 92F1F04EDB06B9E9
5 changed files with 12 additions and 12 deletions

View file

@ -3,7 +3,7 @@ pub type Result<T> = std::result::Result<T, Error>;
/// An error with OBD-II communication
#[derive(thiserror::Error, Debug)]
pub enum Error {
/// An error occured in the [Odb2BaseDevice](crate::device::Obd2BaseDevice)
/// An error occurred in the [Odb2BaseDevice](crate::device::Obd2BaseDevice)
#[error("Device error: `{0:?}`")]
Device(DeviceError),