Skip to content

Commit

Permalink
=> csv format
Browse files Browse the repository at this point in the history
  • Loading branch information
pq committed May 2, 2019
1 parent 9880ed9 commit e54bad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/widget_surveyor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class TwoGrams {
var sb = StringBuffer();
for (var entry in map.entries.toList()
..sort((a, b) => a.key.compareTo(b.key))) {
sb.writeln('${entry.key} : ${entry.value}');
sb.writeln('${entry.key},${entry.value}');
}
return sb.toString();
}
Expand Down

0 comments on commit e54bad0

Please sign in to comment.