docs: fix failing doctest

This commit is contained in:
2025-06-29 02:20:47 +01:00
parent 67ebf48d6f
commit c41e5328e6
+2 -1
View File
@@ -4,7 +4,8 @@ use crate::assembler::model::{Node, Opcode, Symbol, Token};
/// Parse DSA assembly code with optional formatting /// Parse DSA assembly code with optional formatting
/// ///
/// # Examples /// # Examples
/// ``` /// ```rs
/// use assembler::macros::dsa;
/// // With formatting: /// // With formatting:
/// let nodes = dsa!(hash, "mov r1, {}", 42)?; /// let nodes = dsa!(hash, "mov r1, {}", 42)?;
/// ///