about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2020-06-30 13:36:33 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2020-06-30 13:36:33 +0200
commitf74a7d3ff1a080f4877a43096985b693d5949f55 (patch)
tree45546339f26ecc5c6a37ecba1ff36a902d50ebeb /src/librustc_error_codes/error_codes
parentc86039b33343de264d8b3b1a9e3591b10d5615e8 (diff)
downloadrust-f74a7d3ff1a080f4877a43096985b693d5949f55.tar.gz
rust-f74a7d3ff1a080f4877a43096985b693d5949f55.zip
Clean up E0712 explanation
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0712.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_error_codes/error_codes/E0712.md b/src/librustc_error_codes/error_codes/E0712.md
index 89f60084f0a..7e09210e787 100644
--- a/src/librustc_error_codes/error_codes/E0712.md
+++ b/src/librustc_error_codes/error_codes/E0712.md
@@ -1,5 +1,5 @@
-This error occurs because a borrow of a thread-local variable was made inside a
-function which outlived the lifetime of the function.
+A borrow of a thread-local variable was made inside a function which outlived
+the lifetime of the function.
 
 Erroneous code example: