Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #13 from duzenko/master
Browse files Browse the repository at this point in the history
Thanks. The serializers really should have tests
  • Loading branch information
synw committed Nov 8, 2019
2 parents 388c7a7 + 71a5a13 commit 7a0995b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class GeoJsonFeatureCollection {
/// Serialize to a geojson features collection
String serialize() {
final buffer = StringBuffer()
..write('{"type": "FeatureCollection", "name": "$name"')
..write('{"type": "FeatureCollection", "name": "$name",')
..write('"features": [');
for (final feat in collection) {
buffer.write(feat.serialize());
Expand Down

0 comments on commit 7a0995b

Please sign in to comment.