diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2020-08-28 10:24:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-28 10:24:04 +0200 |
| commit | 0f1ffa85d1d97375eac16c8b25d0c5abf7a3b690 (patch) | |
| tree | 92265c35ac12cd74eeea19ee351ea08c60aa96e5 | |
| parent | e027b57e4071c630eff9c5b97c40c4feaecef273 (diff) | |
| parent | 39f5ebcd7401b050ca948a28db9bf105b9ca6a88 (diff) | |
Rollup merge of #75967 - aticu:blackbox_typo, r=Dylan-DPC
Fix typo in `std::hint::black_box` docs
| -rw-r--r-- | library/core/src/hint.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/hint.rs b/library/core/src/hint.rs index 461b4c79a1d..d40a3802867 100644 --- a/library/core/src/hint.rs +++ b/library/core/src/hint.rs @@ -101,7 +101,7 @@ pub fn spin_loop() { /// [`std::convert::identity`]: https://doc.rust-lang.org/core/convert/fn.identity.html /// /// Unlike [`std::convert::identity`], a Rust compiler is encouraged to assume that `black_box` can -/// use `x` in any possible valid way that Rust code is allowed to without introducing undefined +/// use `dummy` in any possible valid way that Rust code is allowed to without introducing undefined /// behavior in the calling code. This property makes `black_box` useful for writing code in which /// certain optimizations are not desired, such as benchmarks. /// |
