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 885f0a2 commit 49e466fCopy full SHA for 49e466f
doc/rust.md
@@ -594,16 +594,16 @@ and may optionally begin with any number of `attributes` that apply to the conta
594
Atributes on the anonymous crate module define important metadata that influences
595
the behavior of the compiler.
596
597
-~~~~~~~~{.xfail-test}
+~~~~~~~~
598
// Linkage attributes
599
-#[ link(name = "projx"
+#[ link(name = "projx",
600
vers = "2.5",
601
uuid = "9cccc5d5-aceb-4af5-8285-811211826b82") ];
602
603
// Additional metadata attributes
604
-#[ desc = "Project X",
605
- license = "BSD" ];
606
- author = "Jane Doe" ];
+#[ desc = "Project X" ];
+#[ license = "BSD" ];
+#[ author = "Jane Doe" ];
607
608
// Specify the output type
609
#[ crate_type = "lib" ];
0 commit comments