Changeset 18412 in josm for trunk


Ignore:
Timestamp:
2022-03-23T13:32:36+01:00 (2 years ago)
Author:
taylor.smock
Message:

see r18408, #21480, fix #21962: typo with xor (patch by skyper)

This fixes a typo where "logical or" should have been "logical xor".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/SearchDialog.java

    r18408 r18412  
    347347        hintPanel.add(new SearchKeywordRow(hcbSearchString)
    348348                .addKeyword("<i>expr</i> ^ <i>expr</i>", "^ ", tr("logical xor (one and only one expression has to be satisfied)"))
    349                 .addKeyword("<i>expr</i> XOR <i>expr</i>", "XOR ", tr("logical or (one and only one expression has to be satisfied)"))
     349                .addKeyword("<i>expr</i> XOR <i>expr</i>", "XOR ", tr("logical xor (one and only one expression has to be satisfied)"))
    350350                .addKeyword("-<i>expr</i>", null, tr("logical not"))
    351351                .addKeyword("(<i>expr</i>)", "()", tr("use parenthesis to group expressions")),
Note: See TracChangeset for help on using the changeset viewer.