about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorChris Midgley <chris.midgley@dunecomputers.co.uk>2021-07-21 14:13:46 +0100
committerChris Midgley <chris.midgley@dunecomputers.co.uk>2021-07-21 14:13:46 +0100
commit8b75feceddbf4e162524418b72e1f5331de7109b (patch)
tree8d72defd638145887faad303d44796829ac39210 /compiler/rustc_error_codes/src
parent3e981e220940c86b57ebab8413d9855af3bbda8c (diff)
downloadrust-8b75feceddbf4e162524418b72e1f5331de7109b.tar.gz
rust-8b75feceddbf4e162524418b72e1f5331de7109b.zip
docs: normalise wording in line with docs
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0757.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0757.md b/compiler/rustc_error_codes/src/error_codes/E0757.md
index ed7ee1c6fa2..41b06b23c4f 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0757.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0757.md
@@ -12,7 +12,7 @@ extern "C" {
 }
 ```
 
-As `ffi_const` has a stricter set of requirements than `ffi_pure`, remove the
+As `ffi_const` provides stronger guarantees than `ffi_pure`, remove the
 `ffi_pure` attribute:
 
 ```