Rollup merge of #71637 - mibac138:cfg-sanitize, r=petrochenkov

Minor formatting changes in `cfg-sanitize.md`
This commit is contained in:
Dylan DPC 2020-04-28 17:55:48 +02:00 committed by GitHub
commit 3d1f958b6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ depending on whether a particular sanitizer is enabled or not.
## Examples
``` rust
```rust
#![feature(cfg_sanitize)]
#[cfg(sanitize = "thread")]
@ -31,6 +31,4 @@ fn b() {
// ...
}
}
```