Skip to content

Commit b59a9de

Browse files
committed
feat: update for Flix version 0.45.0
1 parent be03e45 commit b59a9de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parser.flix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ mod Parser {
224224
/// Returns `chars` as a string.
225225
///
226226
pub def stringify(chars: m[Char]): String with Foldable[m] = region r {
227-
let sb = StringBuilder.new(r);
227+
let sb = StringBuilder.empty(r);
228228
let ap = sb |> flip(StringBuilder.append!);
229229
Foldable.forEach(ap, chars);
230230
StringBuilder.toString(sb)

0 commit comments

Comments
 (0)