@@ -125,7 +125,7 @@ pub struct TestProps {
125
125
// Build documentation for all specified aux-builds as well
126
126
pub build_aux_docs : bool ,
127
127
/// Build the documentation for each crate in a unique output directory.
128
- /// Uses <root output directory>/docs/<test name>/doc
128
+ /// Uses ` <root output directory>/docs/<test name>/doc`.
129
129
pub unique_doc_out_dir : bool ,
130
130
// Flag to force a crate to be built with the host architecture
131
131
pub force_host : bool ,
@@ -1304,12 +1304,12 @@ pub fn llvm_has_libzstd(config: &Config) -> bool {
1304
1304
false
1305
1305
}
1306
1306
1307
- /// Takes a directive of the form "<version1> [- <version2>]",
1308
- /// returns the numeric representation of <version1> and <version2> as
1309
- /// tuple: (<version1> as u32, <version2> as u32)
1307
+ /// Takes a directive of the form ` "<version1> [- <version2>]"` ,
1308
+ /// returns the numeric representation of ` <version1>` and ` <version2>` as
1309
+ /// tuple: ` (<version1> as u32, <version2> as u32)`.
1310
1310
///
1311
- /// If the <version2> part is omitted, the second component of the tuple
1312
- /// is the same as <version1>.
1311
+ /// If the ` <version2>` part is omitted, the second component of the tuple
1312
+ /// is the same as ` <version1>` .
1313
1313
fn extract_version_range < F > ( line : & str , parse : F ) -> Option < ( u32 , u32 ) >
1314
1314
where
1315
1315
F : Fn ( & str ) -> Option < u32 > ,
0 commit comments