Skip to content

Commit

Permalink
docs(core): fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Jan 6, 2025
1 parent 6cc4509 commit 2ff381a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harper-core/src/fat_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use serde::{Deserialize, Serialize};

use crate::TokenKind;

/// A [`Token`] that holds its content as a fat [`Vec<char>`] rather than as a
/// [`Span`].
/// A [`Token`](crate::Token) that holds its content as a fat [`Vec<char>`] rather than as a
/// [`Span`](crate::Span).
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, PartialOrd)]
pub struct FatToken {
pub content: Vec<char>,
Expand Down

0 comments on commit 2ff381a

Please sign in to comment.