diff options
| author | Michael Howell <michael@notriddle.com> | 2021-08-30 22:18:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-30 22:18:55 -0700 |
| commit | 435cdd0f9ab2cb02bb475415279f9542efa449a1 (patch) | |
| tree | 3bde0feb39bacb7a1c4c2cbfd1eee3e94f7adaef /compiler/rustc_error_codes/src | |
| parent | 026322c34b2ae68af15b59df69a121209c8364f1 (diff) | |
| download | rust-435cdd0f9ab2cb02bb475415279f9542efa449a1.tar.gz rust-435cdd0f9ab2cb02bb475415279f9542efa449a1.zip | |
Update E0785.md
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0785.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0785.md b/compiler/rustc_error_codes/src/error_codes/E0785.md index b8a03cd109d..373320539ef 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0785.md +++ b/compiler/rustc_error_codes/src/error_codes/E0785.md @@ -26,5 +26,5 @@ trait PrincipalTrait {} auto trait AutoTrait {} -impl dyn (PrincipalTrait + AutoTrait + Send) {} +impl dyn PrincipalTrait + AutoTrait + Send {} ``` |
