Changeset 18170 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2021-08-23T23:17:28+02:00 (3 years ago)
Author:
Don-vip
Message:

fix #21244 - Fix misspellings in comments (patch by gaben)

Location:
trunk/src/org/openstreetmap/josm
Files:
8 edited

Legend:

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

    r14203 r18170  
    3838     * @param pattern decimal format pattern
    3939     * @return {@code DecimalFormat} using dot as decimal separator
    40      * @see DecimalFormat#applyPattern
     40     * @see DecimalFormat#applyPattern(String)
    4141     * @since 14203
    4242     */
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java

    r17896 r18170  
    9191     * @param color The color of the node.
    9292     * @param size size in pixels
    93      * @param fill determines if the square mmust be filled
     93     * @param fill determines if the square must be filled
    9494     */
    9595    public abstract void drawNode(INode n, Color color, int size, boolean fill);
     
    196196
    197197    /**
    198      * Checks if a way segemnt is large enough for additional information display.
     198     * Checks if a way segment is large enough for additional information display.
    199199     *
    200200     * @param p1 First point of the way segment.
  • trunk/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java

    r13632 r18170  
    1111 * Albers Equal Area Projection (EPSG code 9822). This is a conic projection with parallels being
    1212 * unequally spaced arcs of concentric circles, more closely spaced at north and south edges of the
    13  * map. Merideans are equally spaced radii of the same circles and intersect parallels at right
     13 * map. Meridians are equally spaced radii of the same circles and intersect parallels at right
    1414 * angles. As the name implies, this projection minimizes distortion in areas.
    1515 * <p>
     
    2828 * <ul>
    2929 *   <li> Proj-4.4.7 available at <A HREF="http://www.remotesensing.org/proj">www.remotesensing.org/proj</A><br>
    30  *        Relevent files are: PJ_aea.c, pj_fwd.c and pj_inv.c </li>
     30 *        Relevant files are: PJ_aea.c, pj_fwd.c and pj_inv.c </li>
    3131 *   <li> John P. Snyder (Map Projections - A Working Manual,
    3232 *        U.S. Geological Survey Professional Paper 1395, 1987)</li>
    3333 *   <li> "Coordinate Conversions and Transformations including Formulas",
    34  *        EPSG Guidence Note Number 7, Version 19.</li>
     34 *        EPSG Guidance Note Number 7, Version 19.</li>
    3535 * </ul>
    3636 *
  • trunk/src/org/openstreetmap/josm/gui/layer/geoimage/AdjustTimezoneAndOffsetDialog.java

    r18044 r18170  
    158158    /**
    159159     * Sets the {@link AdjustListener}.
    160      * @param listener adjuust listener. Can be null
     160     * @param listener adjust listener, can be null
    161161     * @return {@code this}
    162162     */
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java

    r13173 r18170  
    4747        public void insertString(int offs, String str, AttributeSet a) throws BadLocationException {
    4848
    49             // If a maximum number of characters is specified, avoid to exceed it
     49            // If a maximum number of characters is specified, avoid exceeding it
    5050            if (maxChars != null && str != null && getLength() + str.length() > maxChars) {
    5151                int allowedLength = maxChars-getLength();
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java

    r17585 r18170  
    457457    @Override
    458458    public void relationMembersChanged(RelationMembersChangedEvent event) {
    459         dirty = true; // TODO: not necessary to rebuid if a member is added
     459        dirty = true; // TODO: not necessary to rebuild if a member is added
    460460    }
    461461
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/PresetLink.java

    r17609 r18170  
    2222
    2323/**
    24  * Adds a link to an other preset.
     24 * Adds a link to another preset.
    2525 * @since 8863
    2626 */
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractIdTextField.java

    r16553 r18170  
    7676    /**
    7777     * Tries to set text from given contents (no effect with invalid or empty contents)
    78      * @param contents The text to interprete as ID(s)
     78     * @param contents The text to interpret as ID(s)
    7979     * @return true if text has been pasted and valid ids have been read
    8080     */
Note: See TracChangeset for help on using the changeset viewer.