Skip to content

Commit

Permalink
Update geojson.md to correct a minor typo (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamlaverty committed Aug 29, 2023
1 parent a912f85 commit e2e3bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conceptual/Npgsql/types/geojson.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ await using (var cmd = new NpgsqlCommand("SELECT geom FROM data", conn))
await using (var reader = await cmd.ExecuteReaderAsync())
{
await reader.ReadAsync();
var point2 = reader.GetFieldValue<Point>(0);;
var point2 = reader.GetFieldValue<Point>(0);
}
```

Expand Down

0 comments on commit e2e3bf7

Please sign in to comment.