Skip to content

Commit

Permalink
chore: fix docs references
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Feb 6, 2023
1 parent 3f56b2d commit e53a978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symbolic-debuginfo/src/pe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ impl<'data> PeObject<'data> {

/// Determines whether this object contains embedded source.
///
/// Note: this is for informational purposes only, [`debug_session`] won't serve these sources
/// at the moment.
/// Note: this is for informational purposes only, [`debug_session`](struct.PeObject.html#method.debug_session)
/// won't serve these sources at the moment.
pub fn has_sources(&self) -> bool {
self.embedded_ppdb.as_ref().map_or(false, |e| {
PortablePdbObject::parse(e).map_or(false, |o| o.has_sources())
Expand Down

0 comments on commit e53a978

Please sign in to comment.