From 435cdd0f9ab2cb02bb475415279f9542efa449a1 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Mon, 30 Aug 2021 22:18:55 -0700 Subject: [PATCH] Update E0785.md --- compiler/rustc_error_codes/src/error_codes/E0785.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {} ``` -- GitLab