[Conkeror] [PATCH] Fix a pair of it's/its typoes

Nelson Elhage nelhage at MIT.EDU
Fri Mar 21 20:40:02 PDT 2008


commit ff8e17cd46beee728b5e6efa30c8122679beb488
Author: Nelson Elhage <nelhage at mit.edu>
Date:   Wed Mar 19 11:39:39 2008 -0400

    Fix a pair of it's/its typoes

diff --git a/modules/help.js b/modules/help.js
index 2489962..5b6b251 100644
--- a/modules/help.js
+++ b/modules/help.js
@@ -478,7 +478,7 @@ describe_variable_buffer.prototype = {
         }
 
         p = g.element("p", d.body);
-        g.text("It's value is: ", p);
+        g.text("Its value is: ", p);
         {
             let s = pretty_print_value(conkeror[this.variable]);
             let pre = g.element("pre", p);
@@ -489,7 +489,7 @@ describe_variable_buffer.prototype = {
             g.help_text(uvar.doc, d.body);
 
         p = g.element("p", d.body);
-        g.text("It's default value is: ", p);
+        g.text("Its default value is: ", p);
         {
             let s = pretty_print_value(user_variables.get(this.variable).default_value);
             let pre = g.element("pre", p);


More information about the Conkeror mailing list