Skip to content

Commit

Permalink
type error msg update
Browse files Browse the repository at this point in the history
  • Loading branch information
bcpeinhardt committed Aug 29, 2024
1 parent a0eb676 commit f52379b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/squared_away/lang/typechecker.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ pub fn typecheck(
typ.TNil ->
Error(
error.TypeError(type_error.TypeError(
"Tried to do a boolean and operation (b1 && b2) but the right hand side of the operation has type \"Empty\". Could you be referencing an empty cell?",
"Tried to do a boolean and operation \"&&\" but the right hand side of the operation has type \"Empty\". Could you be referencing an empty cell?",
)),
)
_ ->
Expand Down

0 comments on commit f52379b

Please sign in to comment.