Skip to content

Commit

Permalink
fix: remove ! from function name
Browse files Browse the repository at this point in the history
  • Loading branch information
jaschdoc committed Nov 10, 2024
1 parent 311ff77 commit e51ed2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parser.flix
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ mod Parser {
///
pub def stringify(chars: m[Char]): String \ Foldable.Aef[m] with Foldable[m] = region r {
let sb = StringBuilder.empty(r);
let ap = sb |> flip(StringBuilder.append!);
let ap = sb |> flip(StringBuilder.append);
Foldable.forEach(ap, chars);
StringBuilder.toString(sb)
}
Expand Down

0 comments on commit e51ed2f

Please sign in to comment.