mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
Fix: Add missing space in error message
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
2dd536825d
commit
0c8db62533
1 changed files with 2 additions and 2 deletions
|
@ -4531,7 +4531,7 @@ fn to_missing_platform_report(module_id: ModuleId, other: PlatformPath) -> Strin
|
||||||
let doc = alloc.stack(vec![
|
let doc = alloc.stack(vec![
|
||||||
alloc.reflow(r"The input file is a interface file, but only app modules can be ran."),
|
alloc.reflow(r"The input file is a interface file, but only app modules can be ran."),
|
||||||
alloc.concat(vec![
|
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."),
|
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![
|
let doc = alloc.stack(vec![
|
||||||
alloc.reflow(r"The input file is a package config file, but only app modules can be ran."),
|
alloc.reflow(r"The input file is a package config file, but only app modules can be ran."),
|
||||||
alloc.concat(vec![
|
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."),
|
alloc.reflow(r"but won't output any executable."),
|
||||||
])
|
])
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue