Title: [209429] trunk/Source/_javascript_Core
Revision
209429
Author
jfbast...@apple.com
Date
2016-12-06 15:29:28 -0800 (Tue, 06 Dec 2016)

Log Message

PureNaN: fix typo
https://bugs.webkit.org/show_bug.cgi?id=165493

Reviewed by Mark Lam.

* runtime/PureNaN.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (209428 => 209429)


--- trunk/Source/_javascript_Core/ChangeLog	2016-12-06 23:24:46 UTC (rev 209428)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-12-06 23:29:28 UTC (rev 209429)
@@ -1,3 +1,12 @@
+2016-12-06  JF Bastien  <jfbast...@apple.com>
+
+        PureNaN: fix typo
+        https://bugs.webkit.org/show_bug.cgi?id=165493
+
+        Reviewed by Mark Lam.
+
+        * runtime/PureNaN.h:
+
 2016-12-06  Mark Lam  <mark....@apple.com>
 
         Introduce the concept of Immutable Prototype Exotic Objects to comply with the spec.

Modified: trunk/Source/_javascript_Core/runtime/PureNaN.h (209428 => 209429)


--- trunk/Source/_javascript_Core/runtime/PureNaN.h	2016-12-06 23:24:46 UTC (rev 209428)
+++ trunk/Source/_javascript_Core/runtime/PureNaN.h	2016-12-06 23:29:28 UTC (rev 209429)
@@ -32,7 +32,7 @@
 
 // NaN (not-a-number) double values are central to how _javascript_Core encodes _javascript_
 // values (JSValues).  All values, including integers and non-numeric values, are always
-// encoded using the IEEE 854 binary double format.  Non-double values are encoded using
+// encoded using the IEEE 754 binary double format.  Non-double values are encoded using
 // a NaN with the sign bit set.  The 51-bit payload is then used for encoding the actual
 // value - be it an integer or a pointer to an object, or something else. But we only
 // make use of the low 49 bits and the top 15 bits being all set to 1 is the indicator
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to