diff --git a/dms/dms.go b/dms/dms.go index 1054ce4..e3621c4 100644 --- a/dms/dms.go +++ b/dms/dms.go @@ -69,7 +69,7 @@ func NewDMS(latlon DecimalDegrees) (*DMS, error) { } if lon < -180 || lon > 180 { - return nil, fmt.Errorf("longitude must be in range of -180 and 180, foujnd %f", lon) + return nil, fmt.Errorf("longitude must be in range of -180 and 180, found %f", lon) } latitude := newDMSAngle(lat, latDirection)