Index: trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 11101)
+++ trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 11102)
@@ -294,5 +294,5 @@
 
         switch (ed.showDialog().getValue()) {
-            case 1: ta.copyToClippboard(); break;
+            case 1: ta.copyToClipboard(); break;
             case 2: BugReportSender.reportBug(reportHeader); break;
             default: // Do nothing
Index: trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportDialog.java	(revision 11101)
+++ trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportDialog.java	(revision 11102)
@@ -111,5 +111,5 @@
         panel.add(new UrlLabel(Main.getJOSMWebsite() + "/newticket"), GBC.std().fill(GBC.HORIZONTAL));
         JButton copy = new JButton("Copy to clipboard");
-        copy.addActionListener(e -> textPanel.copyToClippboard());
+        copy.addActionListener(e -> textPanel.copyToClipboard());
         panel.add(copy, GBC.eol().anchor(GBC.EAST));
         content.add(panel, GBC.eop().fill());
Index: trunk/src/org/openstreetmap/josm/tools/bugreport/DebugTextDisplay.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/bugreport/DebugTextDisplay.java	(revision 11101)
+++ trunk/src/org/openstreetmap/josm/tools/bugreport/DebugTextDisplay.java	(revision 11102)
@@ -65,6 +65,7 @@
      * Copies the debug text to the clipboard. This includes the code tags for trac.
      * @return <code>true</code> if copy was successful
+     * @since 11102 (typo)
      */
-    public boolean copyToClippboard() {
+    public boolean copyToClipboard() {
         return ClipboardUtils.copyString(String.format(CODE_PATTERN, text));
     }
