Rename "Comments" button to "View comments"
authorAryeh Gregor <AryehGregor+gitcommit@gmail.com>
Wed, 17 Aug 2011 09:02:44 -0600
changeset 532 12ae54979917
parent 531 11a26dfb2495
child 533 2ce6c2981036
Rename "Comments" button to "View comments"

This way it's clearer that it's not a way to submit comments.

Reported-By: Alfonso Martínez de Lizarrondo
Report-URL: http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2011-August/032941.html
editing.html
source.html
--- a/editing.html	Tue Aug 16 09:36:02 2011 -0600
+++ b/editing.html	Wed Aug 17 09:02:44 2011 -0600
@@ -65,7 +65,7 @@
 <body class=draft>
 <div class=head id=head>
 <h1>HTML Editing APIs</h1>
-<h2 class="no-num no-toc" id=work-in-progress-&mdash;-last-update-15-august-2011>Work in Progress &mdash; Last Update 15 August 2011</h2>
+<h2 class="no-num no-toc" id=work-in-progress-&mdash;-last-update-17-august-2011>Work in Progress &mdash; Last Update 17 August 2011</h2>
 <dl>
  <dt>Editor
  <dd>Aryeh Gregor &lt;<a href=mailto:ayg@aryeh.name>ayg@aryeh.name</a>&gt;
@@ -8894,6 +8894,7 @@
   Daniel Glazman,
   Ian Hickson,
   Cameron Heavon-Jones,
+  Alfonso Mart&iacute;nez de Lizarrondo,
   Glenn Maynard,
   Ms2ger,
   Ryosuke Niwa,
@@ -8917,7 +8918,7 @@
 
 [].forEach.call(document.querySelectorAll(".comments"), function(node) {
   var button = document.createElement("button");
-  button.textContent = "Comments";
+  button.textContent = "View comments";
   button.onclick = function() {
     node.className = node.className == "comments" ? "comments-expanded" : "comments";
   };
--- a/source.html	Tue Aug 16 09:36:02 2011 -0600
+++ b/source.html	Wed Aug 17 09:02:44 2011 -0600
@@ -8974,6 +8974,7 @@
   Daniel Glazman,
   Ian Hickson,
   Cameron Heavon-Jones,
+  Alfonso Martínez de Lizarrondo,
   Glenn Maynard,
   Ms2ger,
   Ryosuke Niwa,
@@ -8997,7 +8998,7 @@
 <!-- @{ -->
 [].forEach.call(document.querySelectorAll(".comments"), function(node) {
   var button = document.createElement("button");
-  button.textContent = "Comments";
+  button.textContent = "View comments";
   button.onclick = function() {
     node.className = node.className == "comments" ? "comments-expanded" : "comments";
   };