Title: [98217] trunk/Source/_javascript_Core
Revision
98217
Author
[email protected]
Date
2011-10-23 22:53:58 -0700 (Sun, 23 Oct 2011)

Log Message

Fixed a typo Darin spotted.

* wtf/StringHasher.h:
(WTF::StringHasher::hash): Expelliarmus!

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (98216 => 98217)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-24 05:51:48 UTC (rev 98216)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-24 05:53:58 UTC (rev 98217)
@@ -1,5 +1,12 @@
 2011-10-23  Geoffrey Garen  <[email protected]>
 
+        Fixed a typo Darin spotted.
+
+        * wtf/StringHasher.h:
+        (WTF::StringHasher::hash): Expelliarmus!
+
+2011-10-23  Geoffrey Garen  <[email protected]>
+
         Removed StringImpl::createStrippingNullCharacters
         https://bugs.webkit.org/show_bug.cgi?id=70700
 

Modified: trunk/Source/_javascript_Core/wtf/StringHasher.h (98216 => 98217)


--- trunk/Source/_javascript_Core/wtf/StringHasher.h	2011-10-24 05:51:48 UTC (rev 98216)
+++ trunk/Source/_javascript_Core/wtf/StringHasher.h	2011-10-24 05:53:58 UTC (rev 98217)
@@ -81,7 +81,7 @@
         result += result >> 15;
         result ^= result << 10;
 
-        // Reserving the high bits for flags perserves most of the hash's value,
+        // Reserving the high bits for flags preserves most of the hash's value,
         // since hash lookup typically masks out the high bits anyway.
         result >>= flagCount;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to