Skip to content

Commit

Permalink
fix spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
KingAkeem committed Sep 24, 2023
1 parent 0b73dcf commit fe1ae31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dms/dms.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fe1ae31

Please sign in to comment.