Changeset 16310 in josm


Ignore:
Timestamp:
2020-04-15T22:40:30+02:00 (4 years ago)
Author:
simon04
Message:

Fix typos in Javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r15449 r16310  
    224224    /**
    225225     * Computes the distance between this lat/lon and another point on the earth.
    226      * Uses Haversine formular.
     226     * Uses <a href="https://en.wikipedia.org/wiki/Haversine_formula">Haversine formula</a>.
    227227     * @param other the other point.
    228228     * @return distance in metres.
     
    289289     * @param ll2 The other lat/lon object
    290290     * @param proportion The proportion to interpolate
    291      * @return a new latlon at this position if proportion is 0, at the other position it proportion is 1 and lineary interpolated otherwise.
     291     * @return a new latlon at this position if proportion is 0, at the other position it proportion is 1 and linearly interpolated otherwise.
    292292     */
    293293    public LatLon interpolate(LatLon ll2, double proportion) {
Note: See TracChangeset for help on using the changeset viewer.