[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

dbates at webkit.org dbates at webkit.org
Thu Apr 8 01:14:10 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit fb0f095311ae17122dd7db653fdb25918f420f7b
Author: dbates at webkit.org <dbates at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 19 03:08:24 2010 +0000

    2010-01-18  Daniel Bates  <dbates at webkit.org>
    
            Unreviewed, fix misspelling of the word maximum in comment.
    
            * html/HTMLInputElement.cpp:
            (WebCore::HTMLInputElement::maximum):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53451 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a7abbc8..8977202 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-01-18  Daniel Bates  <dbates at webkit.org>
+
+        Unreviewed, fix misspelling of the word maximum in comment.
+
+        * html/HTMLInputElement.cpp:
+        (WebCore::HTMLInputElement::maximum):
+
 2010-01-18  Dan Bernstein  <mitz at apple.com>
 
         Rubber-stamped by Sam Weinig.
diff --git a/WebCore/html/HTMLInputElement.cpp b/WebCore/html/HTMLInputElement.cpp
index 57079b4..27116b6 100644
--- a/WebCore/html/HTMLInputElement.cpp
+++ b/WebCore/html/HTMLInputElement.cpp
@@ -300,7 +300,7 @@ double HTMLInputElement::maximum() const
     formStringToDouble(getAttribute(maxAttr), &max);
     if (inputType() == RANGE) {
         // A remedy for the inconsistent min/max values for RANGE.
-        // Sets the maxmimum to the default or the minimum value.
+        // Sets the maximum to the default or the minimum value.
         double min = minimum();
         if (max < min)
             max = std::max(min, defaultMaximum);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list