about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-03-10 06:47:56 +0100
committerGitHub <noreply@github.com>2020-03-10 06:47:56 +0100
commit6f1db996c19c8eed59554b83be3ca9863cef0690 (patch)
treed88b58cb6516a52344f7eb177971c3ec2e1e3695 /src
parent436f2ec58cecdba7b03a05d89a90e6bce1e13500 (diff)
parentc06fa0be82842b1b5c610e7d4243002305fa845f (diff)
downloadrust-6f1db996c19c8eed59554b83be3ca9863cef0690.tar.gz
rust-6f1db996c19c8eed59554b83be3ca9863cef0690.zip
Rollup merge of #69847 - GuillaumeGomez:cleanup-e0393, r=Dylan-DPC
clean up E0393 explanation

r? @Dylan-DPC
Diffstat (limited to 'src')
-rw-r--r--src/librustc_error_codes/error_codes/E0393.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0393.md b/src/librustc_error_codes/error_codes/E0393.md
index 7cce99401cf..3e853cf1b8a 100644
--- a/src/librustc_error_codes/error_codes/E0393.md
+++ b/src/librustc_error_codes/error_codes/E0393.md
@@ -1,5 +1,6 @@
 A type parameter which references `Self` in its default value was not specified.
-Example of erroneous code:
+
+Erroneous code example:
 
 ```compile_fail,E0393
 trait A<T=Self> {}