[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
dbates at webkit.org
dbates at webkit.org
Wed Jan 20 22:28:47 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit 5e87433a333790f04b250c52c7f1d66c447095b4
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