Index: trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java	(revision 7820)
+++ trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java	(revision 7822)
@@ -9,7 +9,7 @@
 /**
  * The {@link javax.swing.table.TableColumnModel} for the table with the list of tags
- *
+ * @since 1709
  */
-public class TagTableColumnModel extends DefaultTableColumnModel{
+public class TagTableColumnModel extends DefaultTableColumnModel {
     protected void createColumns() {
         TableColumn col = null;
@@ -17,7 +17,7 @@
         TagTableCellRenderer renderer = new TagTableCellRenderer();
 
-        // column 0 - Name
+        // column 0 - Key
         col = new TableColumn(0);
-        col.setHeaderValue(tr("Name"));
+        col.setHeaderValue(tr("Key"));
         col.setCellRenderer(renderer);
         addColumn(col);
@@ -31,4 +31,7 @@
     }
 
+    /**
+     * Constructs a new {@code TagTableColumnModel}.
+     */
     public TagTableColumnModel() {
         createColumns();
