about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorIvan Tham <pickfire@riseup.net>2020-08-10 22:46:15 +0800
committerGitHub <noreply@github.com>2020-08-10 22:46:15 +0800
commit8cb1a2f8a2a3fe9dce850e512c003bffd7786ab6 (patch)
tree1989c13a1de68c4072c8172878e318cf0f5c3f72 /src/librustc_error_codes/error_codes
parenta2d7c33aa83d39cd0ab1fba0a8ccdfd2c7f29576 (diff)
downloadrust-8cb1a2f8a2a3fe9dce850e512c003bffd7786ab6.tar.gz
rust-8cb1a2f8a2a3fe9dce850e512c003bffd7786ab6.zip
Use : rather than . in example description
Co-authored-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0749.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0749.md b/src/librustc_error_codes/error_codes/E0749.md
index 962da0eda08..5b6bfe75cfc 100644
--- a/src/librustc_error_codes/error_codes/E0749.md
+++ b/src/librustc_error_codes/error_codes/E0749.md
@@ -18,7 +18,7 @@ Negative impls are not allowed to have any items. Negative impls declare that a
 trait is **not** implemented (and never will be) and hence there is no need to
 specify the values for trait methods or other items.
 
-One way to fix this is to remove the items in negative impls.
+One way to fix this is to remove the items in negative impls:
 
 ```
 # #![feature(negative_impls)]