about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2020-01-14 10:29:13 -0800
committerEsteban Küber <esteban@kuber.com.ar>2020-01-16 09:49:13 -0800
commit4a75ef91f37dd0bd5267a852fa05ee0a5547a62b (patch)
treeae6b232e26eb4627d5be99ad0ca5157ee4862c12 /src
parent00c82726122d550c586e11bf85501a93ce0fbf75 (diff)
downloadrust-4a75ef91f37dd0bd5267a852fa05ee0a5547a62b.tar.gz
rust-4a75ef91f37dd0bd5267a852fa05ee0a5547a62b.zip
fix error code index comment
Diffstat (limited to 'src')
-rw-r--r--src/librustc_error_codes/error_codes/E0746.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0746.md b/src/librustc_error_codes/error_codes/E0746.md
index 538c9d720d7..acf369d8e14 100644
--- a/src/librustc_error_codes/error_codes/E0746.md
+++ b/src/librustc_error_codes/error_codes/E0746.md
@@ -12,7 +12,7 @@ impl T for S {
 }
 
 // Having the trait `T` as return type is invalid because bare traits do not
-have a statically known size:
+// have a statically known size:
 fn foo() -> dyn T {
     S(42)
 }