feat: cargo fmt

This commit is contained in:
Denys Zhak 2025-12-11 10:16:59 +00:00
parent 703a1e3375
commit 61ab5650af
1 changed files with 3 additions and 3 deletions

View File

@ -438,10 +438,10 @@ impl<'a> Checker<'a> {
} }
/// Returns the [`Tokens`] for the parsed source file. /// Returns the [`Tokens`] for the parsed source file.
/// ///
/// ///
/// Unlike [`Self::tokens`], this method always returns /// Unlike [`Self::tokens`], this method always returns
/// the tokens for the current file, even when within a parsed type annotation. /// the tokens for the current file, even when within a parsed type annotation.
pub(crate) fn source_tokens(&self) -> &'a Tokens { pub(crate) fn source_tokens(&self) -> &'a Tokens {
self.parsed.tokens() self.parsed.tokens()
} }