hixie: Oops, forgot that numbers and Numbers were distinct in JS. (whatwg r5549)

hixie: Oops, forgot that numbers and Numbers were distinct in JS.
(whatwg r5549)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4434&r2=1.4435&f=h
http://html5.org/tools/web-apps-tracker?from=5548&to=5549

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4434
retrieving revision 1.4435
diff -u -d -r1.4434 -r1.4435
--- Overview.html 29 Sep 2010 06:10:37 -0000 1.4434
+++ Overview.html 29 Sep 2010 07:03:45 -0000 1.4435
@@ -6644,6 +6644,18 @@
 
    <dd><p>Return the true value.</dd>
 
+   <dt>If <var title="">input</var> is a number</dt>
+
+   <dd><p>Return the same number.</dd>
+
+   <dt>If <var title="">input</var> is a string</dt>
+
+   <dd><p>Return the same string.</dd>
+
+   <dt>If <var title="">input</var> is a Boolean object</dt>
+
+   <dd><p>Return a newly constructed Boolean object with the same value as <var title="">input</var>.</dd>
+
    <dt>If <var title="">input</var> is a Number object</dt>
 
    <dd><p>Return a newly constructed Number object with the same value as <var title="">input</var>.</dd>
@@ -6723,7 +6735,7 @@
 
     </ol></dd>
 
-   <dt>If <var title="">input</var> is another native object type (e.g. <code>Error</code>)</dt>
+   <dt>If <var title="">input</var> is another native object type (e.g. <code>Error</code>, <code><a href="#function">Function</a></code>)</dt>
    <dt>If <var title="">input</var> is a host object (e.g. a DOM node)</dt>
 
    <dd><p>Throw a <code><a href="#data_clone_err">DATA_CLONE_ERR</a></code> exception and abort the

Received on Wednesday, 29 September 2010 07:05:01 UTC