diff --git a/arcdps/src/extras/keybinds.rs b/arcdps/src/extras/keybinds.rs index 0f7235bea4..654f76000d 100644 --- a/arcdps/src/extras/keybinds.rs +++ b/arcdps/src/extras/keybinds.rs @@ -358,7 +358,7 @@ pub enum Control { /// Some of them are not usable like [`F13`](Self::F32) to [`F35`](Self::F35) or [`Print`](Self::Print). /// /// Names are based upon US keyboard layout. -/// Site to translate it to other languages: http://kbdlayout.info +/// Site to translate it to other languages: #[derive( Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, IntoPrimitive, TryFromPrimitive, )] diff --git a/arcdps/src/lib.rs b/arcdps/src/lib.rs index 9ae4202014..831c738096 100644 --- a/arcdps/src/lib.rs +++ b/arcdps/src/lib.rs @@ -148,14 +148,14 @@ pub struct SupportedFields { /// First event id will be `2`. /// /// At least one participant will be a party/squad member or minion of, or a buff applied by squad in the case of buff remove. - /// Not all statechanges are present in the realtime API, see [`StateChange`](crate::StateChange) for details. + /// Not all statechanges are present in the realtime API, see [`StateChange`] for details. /// /// No `event` and `src.elite == 0` indicates a tracking change. /// Player was added when `src.prof != 0`, otherwise removed. /// When added `dst.name` contains the account name, /// `dst.id` the instance id, - /// `dst.prof` the [`Profession`](crate::Profession), - /// `dst.elite` the elite [`Specialization`](crate::Specialization), + /// `dst.prof` the [`Profession`], + /// `dst.elite` the elite [`Specialization`], /// `dst.is_self` whether the added player is self (local player), /// `src.team` the team and `dst.team` the subgroup. /// diff --git a/evtc_parse/src/log_transformed.rs b/evtc_parse/src/log_transformed.rs index 00662dafa4..2c69a0ee52 100644 --- a/evtc_parse/src/log_transformed.rs +++ b/evtc_parse/src/log_transformed.rs @@ -17,7 +17,7 @@ pub struct LogTransformed { /// Information about skills used in the log. pub skills: Vec, - /// Every [`Event`] occurring in the log transformed as [`EventKind`]. + /// Every [`Event`](crate::Event) occurring in the log transformed as [`EventKind`]. pub events: Vec, }