From 0c8db625336adf1c86da92c6613a5d971bb19f4b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Oct 2021 12:59:29 +0000 Subject: [PATCH] Fix: Add missing space in error message Signed-off-by: Matthias Beyer --- compiler/load/src/file.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/load/src/file.rs b/compiler/load/src/file.rs index 906357e4b9..482b85f3df 100644 --- a/compiler/load/src/file.rs +++ b/compiler/load/src/file.rs @@ -4531,7 +4531,7 @@ fn to_missing_platform_report(module_id: ModuleId, other: PlatformPath) -> Strin let doc = alloc.stack(vec![ alloc.reflow(r"The input file is a interface file, but only app modules can be ran."), alloc.concat(vec![ - alloc.reflow(r"I will still parse and typecheck the input file and its dependencies,"), + alloc.reflow(r"I will still parse and typecheck the input file and its dependencies, "), alloc.reflow(r"but won't output any executable."), ]) ]); @@ -4547,7 +4547,7 @@ fn to_missing_platform_report(module_id: ModuleId, other: PlatformPath) -> Strin let doc = alloc.stack(vec![ alloc.reflow(r"The input file is a package config file, but only app modules can be ran."), alloc.concat(vec![ - alloc.reflow(r"I will still parse and typecheck the input file and its dependencies,"), + alloc.reflow(r"I will still parse and typecheck the input file and its dependencies, "), alloc.reflow(r"but won't output any executable."), ]) ]);