Skip to content

Commit

Permalink
fix: use correct property
Browse files Browse the repository at this point in the history
closes #2826
  • Loading branch information
steveoh authored Jan 6, 2021
1 parent fa9423e commit d0873ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HotChocolate/Spatial/src/Types/GeoJsonPointType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected override void Configure(IObjectTypeDescriptor<Point> descriptor)
.BindFieldsExplicitly();

descriptor
.Field(x => x.Coordinates)
.Field(x => x.Coordinate)
.Description(GeoJson_Field_Coordinates_Description_Point);

descriptor
Expand Down

0 comments on commit d0873ac

Please sign in to comment.