about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-01-10 23:56:00 +0530
committerGitHub <noreply@github.com>2020-01-10 23:56:00 +0530
commit4fadb507f48a0f959518bbf9b7d0969a159d76f1 (patch)
treefbaa28bacb583daa88a6f3c0eef3e59f004525f3 /src/librustc_error_codes/error_codes
parentc899f676733c8b7a732294ca7484c64ae3d6dddf (diff)
downloadrust-4fadb507f48a0f959518bbf9b7d0969a159d76f1.tar.gz
rust-4fadb507f48a0f959518bbf9b7d0969a159d76f1.zip
Update E0185.md
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0185.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_error_codes/error_codes/E0185.md b/src/librustc_error_codes/error_codes/E0185.md
index ac5d8bd766f..944a93ed14e 100644
--- a/src/librustc_error_codes/error_codes/E0185.md
+++ b/src/librustc_error_codes/error_codes/E0185.md
@@ -19,8 +19,8 @@ impl Foo for Bar {
 ```
 
 When a type implements a trait's associated function, it has to use the same
-signature. So in this case, since `Foo::foo` doesn't take any argument and
-doesn't return anything, its implementation on `Bar` should be the same:
+signature. So in this case, since `Foo::foo` does not take any argument and
+does not return anything, its implementation on `Bar` should be the same:
 
 ```
 trait Foo {