diff --git a/src/constants/mod.rs b/src/constants/mod.rs index 3384540..30d2e2f 100644 --- a/src/constants/mod.rs +++ b/src/constants/mod.rs @@ -105,7 +105,7 @@ pub enum Weather { Storm = 5, } -/// Temperature change direction. Represents a [`u8`]. +/// Temperature change direction. Represents an [`i8`]. #[non_exhaustive] #[derive( BinRead, @@ -1067,7 +1067,7 @@ pub enum ErsDeployMode { Hotlap = 3, } -/// Flag the driver is currently being shown. Represents a [`u8`]. +/// Flag the driver is currently being shown. Represents an [`i8`]. #[non_exhaustive] #[derive( BinRead, diff --git a/src/lib.rs b/src/lib.rs index d5e0d4d..5728113 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! Convert binary data from F1 24, F1 23, and F1 22 UDP telemetry into organised structs. //! ## Getting started //! -//! Add `f1_game_packet_parser` to your project by running the following command: +//! Add `f1-game-packet-parser` to your project by running the following command: //! //! ```sh //! cargo add f1-game-packet-parser