about summary refs log tree commit diff
path: root/compiler/rustc_error_codes
diff options
context:
space:
mode:
authorOliver Killane <oliverkillane@gmail.com>2024-05-05 14:55:16 +0100
committerOliver Killane <oliverkillane@gmail.com>2024-05-05 14:55:16 +0100
commitf3dcf65985dd956595a3f14dcb2a3052daceeb73 (patch)
tree5602e8a7060ba6aa59872b2401dd99e709dacccf /compiler/rustc_error_codes
parentad7c2b06609c0da21ebdab6e45135cf07290f585 (diff)
downloadrust-f3dcf65985dd956595a3f14dcb2a3052daceeb73.tar.gz
rust-f3dcf65985dd956595a3f14dcb2a3052daceeb73.zip
fix whitespace
Diffstat (limited to 'compiler/rustc_error_codes')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0582.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0582.md b/compiler/rustc_error_codes/src/error_codes/E0582.md
index ea32e4f9f33..31927cd5fe3 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0582.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0582.md
@@ -42,8 +42,8 @@ where
     f: F
 }
 ```
-This is as `Foo::Assoc<'a>` could be implemented by a type that does not use 
-the `'a` parameter, so there is no guarentee that `X::Assoc<'a>` actually uses 
+This is as `Foo::Assoc<'a>` could be implemented by a type that does not use
+the `'a` parameter, so there is no guarentee that `X::Assoc<'a>` actually uses
 `'a`.
 
 To fix this we can pass a dummy parameter: