2008-10-20  Alp Toker  <alp@nuanti.com>

        Rubber-stamped by Mark Rowe.

        Typo fix in function name: mimimum -> minimum.

        * kjs/DateMath.cpp:
        (JSC::minimumYearForDST):
        (JSC::equivalentYearForDST):


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@37733 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/kjs/DateMath.cpp b/JavaScriptCore/kjs/DateMath.cpp
index 2fa0c95c..ec2a3f6 100644
--- a/JavaScriptCore/kjs/DateMath.cpp
+++ b/JavaScriptCore/kjs/DateMath.cpp
@@ -425,7 +425,7 @@
     return 2037;
 }
 
-static inline int mimimumYearForDST()
+static inline int minimumYearForDST()
 {
     // Because of the 2038 issue (see maximumYearForDST) if the current year is
     // greater than the max year minus 27 (2010), we want to use the max year
@@ -449,7 +449,7 @@
     // It is ok if the cached year is not the current year as long as the rules
     // for DST did not change between the two years; if they did the app would need
     // to be restarted.
-    static int minYear = mimimumYearForDST();
+    static int minYear = minimumYearForDST();
     int maxYear = maximumYearForDST();
 
     int difference;