Skip to content

Commit b5367a5

Browse files
fmt
1 parent 1b912af commit b5367a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/tokenizer.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ class KdlTokenizer {
713713
if (i < 0 || i >= _str.length) {
714714
return null;
715715
}
716-
var char = _str.substring(i, i+1);
716+
var char = _str.substring(i, i + 1);
717717
if (_forbidden.contains(char)) {
718718
_fail("Forbidden character: $char");
719719
}

0 commit comments

Comments
 (0)