conlang: Fix rustdoc warnings

This commit is contained in:
2025-05-18 12:02:50 -04:00
parent d80f2f6315
commit ae026420f1
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ pub struct Error {
impl Error {
#![allow(non_snake_case)]
/// Adds a [Span] to this [Error], if there isn't already a more specific one.
/// Adds a [struct Span] to this [Error], if there isn't already a more specific one.
pub fn with_span(self, span: Span) -> Self {
Self { span: self.span.or(Some(span)), ..self }
}