We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 395bf85 commit c1c0507Copy full SHA for c1c0507
rp2040-hal/src/intrinsics.rs
@@ -58,16 +58,17 @@ macro_rules! intrinsics_aliases {
58
/// Like the compiler-builtins macro, it accepts a series of functions that
59
/// looks like normal Rust code:
60
///
61
-/// intrinsics! {
62
-/// extern "C" fn foo(a: i32) -> u32 {
63
-/// // ...
64
-/// }
65
-///
66
-/// #[nonstandard_attribute]
67
-/// extern "C" fn bar(a: i32) -> u32 {
68
69
+/// ```text
+/// intrinsics! {
+/// extern "C" fn foo(a: i32) -> u32 {
+/// // ...
+/// }
+/// #[nonstandard_attribute]
+/// extern "C" fn bar(a: i32) -> u32 {
70
/// }
71
+/// ```
72
73
/// Each function can also be decorated with nonstandard attributes to control
74
/// additional behaviour:
0 commit comments