From 643a587605ee54a879e2497e4d5d47068d23dd30 Mon Sep 17 00:00:00 2001 From: hatoo Date: Sun, 21 Jul 2024 22:41:10 +0900 Subject: [PATCH] Fix a doc for CubeMode --- crates/cubecl-macros/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cubecl-macros/src/lib.rs b/crates/cubecl-macros/src/lib.rs index 4b0604e4d..82630ace6 100644 --- a/crates/cubecl-macros/src/lib.rs +++ b/crates/cubecl-macros/src/lib.rs @@ -22,7 +22,7 @@ enum CubeMode { /// Generates the expanded version of the function Default, /// Panics and prints the generated code, useful when debugging - /// Use by writing #[cube(panic)] + /// Use by writing #[cube(debug)] Debug, }