Remove accidental trailing spaces

This commit is contained in:
Jan Van Bruggen 2022-01-18 10:11:13 -07:00
parent 3eb266c860
commit 1e9d2d1239
44 changed files with 169 additions and 169 deletions

View file

@ -34,7 +34,7 @@ fn with_default() {
indoc!(
r#"
result : Result I64 {}
result = Err {}
result = Err {}
Result.withDefault result 0
"#
@ -66,7 +66,7 @@ fn result_map() {
indoc!(
r#"
result : Result I64 {}
result = Err {}
result = Err {}
result
|> Result.map (\x -> x + 1)
@ -230,7 +230,7 @@ fn roc_result_ok() {
indoc!(
r#"
result : Result I64 {}
result = Ok 42
result = Ok 42
result
"#
@ -246,7 +246,7 @@ fn roc_result_err() {
assert_evals_to!(
indoc!(
r#"
result : Result I64 Str
result : Result I64 Str
result = Err "foo"
result