fix(ast): correct code comment (#5004)

Comment showing macro expansion did not match the actual macro output.
This commit is contained in:
overlookmotel 2024-08-20 11:56:29 +00:00
parent b7db235065
commit 7f3129efd1

View file

@ -799,7 +799,7 @@ pub(crate) use inherit_variants;
/// /// # Panic
/// /// Panics if not convertible.
/// #[inline]
/// pub fn to_declaration_mut(&mut self) -> Option<&mut Declaration<'a>> {
/// pub fn to_declaration_mut(&mut self) -> &mut Declaration<'a> {
/// self.as_declaration_mut().unwrap()
/// }
/// }