Skip to content

Commit b63ab87

Browse files
committed
Longitude <- Longtitude, causes Geo deserialization fail
1 parent 5b1ada2 commit b63ab87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Nest/Domain/Geo/GeoLocation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class GeoLocation : IEquatable<GeoLocation>, IFormattable
2525
/// <summary>
2626
/// Longitude
2727
/// </summary>
28-
public double Longtitude { get { return _longitude; } }
28+
public double Longitude { get { return _longitude; } }
2929
private readonly double _longitude;
3030

3131
/// <summary>
@@ -118,4 +118,4 @@ public string ToString(string format, IFormatProvider formatProvider)
118118
return ToString();
119119
}
120120
}
121-
}
121+
}

0 commit comments

Comments
 (0)