Skip to content

Commit 464375e

Browse files
committed
test(core): unformat macros doc examples
1 parent 6343600 commit 464375e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src-tauri/src/libs/logger.rs

-4
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ pub async fn write_log_message(log_file_name: &str, scope: &str, message: &str)
3434
///
3535
/// # Examples
3636
///
37-
/// ```no_run
3837
/// debug!("my_function()", "Value: {}", 42);
39-
/// ```
4038
#[macro_export]
4139
macro_rules! debug {
4240
($function_name:expr, $($arg:tt)*) => {{
@@ -61,9 +59,7 @@ macro_rules! debug {
6159
///
6260
/// # Examples
6361
///
64-
/// ```no_run
6562
/// error!("my_function()", "Value: {}", 42);
66-
/// ```
6763
#[macro_export]
6864
macro_rules! error {
6965
($function_name:expr, $($arg:tt)*) => {{

0 commit comments

Comments
 (0)