Fix typo in sanitizer flag in unstable book.

This commit is contained in:
Corey Farwell 2021-02-23 09:10:11 -05:00
parent 446d4533e8
commit f94c15c5a3
1 changed files with 2 additions and 2 deletions

View File

@ -286,8 +286,8 @@ achieve that will result in false positive reports.
Detecting the use of uninitialized memory. The `-Zbuild-std` flag rebuilds and
instruments the standard library, and is strictly necessary for the correct
operation of the tool. The `-Zsanitizer-track-origins` enables tracking of the
origins of uninitialized memory:
operation of the tool. The `-Zsanitizer-memory-track-origins` enables tracking
of the origins of uninitialized memory:
```rust
use std::mem::MaybeUninit;