Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/test-utils/src/fixture.rs')
| -rw-r--r-- | crates/test-utils/src/fixture.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/test-utils/src/fixture.rs b/crates/test-utils/src/fixture.rs index 9871fd2cf0..54c9db7aac 100644 --- a/crates/test-utils/src/fixture.rs +++ b/crates/test-utils/src/fixture.rs @@ -143,14 +143,14 @@ pub struct FixtureWithProjectMeta { /// Specifies LLVM data layout to be used. /// /// You probably don't want to manually specify this. See LLVM manual for the - /// syntax, if you must: https://llvm.org/docs/LangRef.html#data-layout + /// syntax, if you must: <https://llvm.org/docs/LangRef.html#data-layout> pub target_data_layout: String, } impl FixtureWithProjectMeta { /// Parses text which looks like this: /// - /// ```not_rust + /// ```text /// //- some meta /// line 1 /// line 2 @@ -159,7 +159,7 @@ impl FixtureWithProjectMeta { /// /// Fixture can also start with a proc_macros and minicore declaration (in that order): /// - /// ``` + /// ```text /// //- toolchain: nightly /// //- proc_macros: identity /// //- minicore: sized |