From 3eea2c934e201ed2fd46a88c31e48495cf7f5270 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Sat, 18 Jul 2020 22:17:41 -0400 Subject: [PATCH] Fix an annotation formatting regression --- compiler/fmt/src/annotation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/fmt/src/annotation.rs b/compiler/fmt/src/annotation.rs index f7ea0a5b7d..5f7c501058 100644 --- a/compiler/fmt/src/annotation.rs +++ b/compiler/fmt/src/annotation.rs @@ -307,7 +307,7 @@ fn format_assigned_field_help<'a, T>( } buf.push_str(separator_prefix); - buf.push(':'); + buf.push_str(": "); ann.value.format(buf, indent); } OptionalValue(name, spaces, ann) => {