Skip to content

Commit

Permalink
Fix doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Dec 13, 2023
1 parent c1fd90d commit 1acf6b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arcdps/src/extras/keybinds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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: <http://kbdlayout.info>
#[derive(
Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, IntoPrimitive, TryFromPrimitive,
)]
Expand Down
6 changes: 3 additions & 3 deletions arcdps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down
2 changes: 1 addition & 1 deletion evtc_parse/src/log_transformed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub struct LogTransformed {
/// Information about skills used in the log.
pub skills: Vec<Skill>,

/// Every [`Event`] occurring in the log transformed as [`EventKind`].
/// Every [`Event`](crate::Event) occurring in the log transformed as [`EventKind`].
pub events: Vec<EventKind>,
}

Expand Down

0 comments on commit 1acf6b0

Please sign in to comment.