Skip to content

Commit

Permalink
feat: update for Flix version 0.45.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaschdoc committed Mar 10, 2024
1 parent be03e45 commit b59a9de
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 @@ -224,7 +224,7 @@ mod Parser {
/// Returns `chars` as a string.
///
pub def stringify(chars: m[Char]): String with Foldable[m] = region r {
let sb = StringBuilder.new(r);
let sb = StringBuilder.empty(r);
let ap = sb |> flip(StringBuilder.append!);
Foldable.forEach(ap, chars);
StringBuilder.toString(sb)
Expand Down

0 comments on commit b59a9de

Please sign in to comment.