Changeset 297

Show
Ignore:
Timestamp:
10/15/05 01:12:43 (3 years ago)
Author:
bob
Message:

doc fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • mochikit/trunk/doc/html/MochiKit/Base.html

    r286 r297  
    8383<p>The comparators (operators for comparison) in JavaScript are deeply broken, 
    8484and it is not possible to teach them new tricks.</p> 
    85 <p>The extensible comparison facility exposed by MochiKit as a simple 
     85<p>MochiKit exposes an extensible comparison facility as a simple 
    8686<tt class="docutils literal"><span class="pre">compare(a,</span> <span class="pre">b)</span></tt> function, which should be used in lieu of JavaScript's 
    8787operators whenever comparing objects other than numbers or strings (though you 
     
    126126is compact, fast, and much simpler to use for most purposes.</p> 
    127127<p>To create a JSON serialization of any object, simply call <tt class="docutils literal"><span class="pre">serializeJSON()</span></tt> 
    128 with that object.  To use unserialize a JSON string, simply call <tt class="docutils literal"><span class="pre">evalJSON()</span></tt> 
     128with that object.  To unserialize a JSON string, simply call <tt class="docutils literal"><span class="pre">evalJSON()</span></tt> 
    129129with the serialization.</p> 
    130130<p>In order of precedence, <tt class="docutils literal"><span class="pre">serializeJSON</span></tt> coerces the given argument into a 
  • mochikit/trunk/doc/html/MochiKit/DOM.html

    r292 r297  
    6868<li>Functions are called with a <tt class="docutils literal"><span class="pre">this</span></tt> of the parent 
    6969node and their return value is subject to the 
    70 following rules (even this one)</li> 
     70following rules (even this one).</li> 
    7171<li><tt class="docutils literal"><span class="pre">undefined</span></tt> and <tt class="docutils literal"><span class="pre">null</span></tt> are ignored.</li> 
    7272<li>Iterables (see <a class="reference" href="Iter.html">MochiKit.Iter</a>) are flattened 
  • mochikit/trunk/doc/html/MochiKit/DateTime.html

    r180 r297  
    1818<pre class="literal-block"> 
    1919stringDate = toISOTimestamp(new Date()); 
    20 daeObject = isoTimestamp(stringDate); 
     20dateObject = isoTimestamp(stringDate); 
    2121</pre> 
    2222</div> 
  • mochikit/trunk/doc/rst/MochiKit/Base.rst

    r286 r297  
    8484and it is not possible to teach them new tricks. 
    8585 
    86 The extensible comparison facility exposed by MochiKit as a simple 
     86MochiKit exposes an extensible comparison facility as a simple 
    8787``compare(a, b)`` function, which should be used in lieu of JavaScript's 
    8888operators whenever comparing objects other than numbers or strings (though you 
     
    137137 
    138138To create a JSON serialization of any object, simply call ``serializeJSON()`` 
    139 with that object.  To use unserialize a JSON string, simply call ``evalJSON()`` 
     139with that object.  To unserialize a JSON string, simply call ``evalJSON()`` 
    140140with the serialization. 
    141141 
  • mochikit/trunk/doc/rst/MochiKit/DOM.rst

    r292 r297  
    74741.  Functions are called with a ``this`` of the parent 
    7575    node and their return value is subject to the 
    76     following rules (even this one) 
     76    following rules (even this one). 
    77772.  ``undefined`` and ``null`` are ignored. 
    78783.  Iterables (see `MochiKit.Iter`_) are flattened 
  • mochikit/trunk/doc/rst/MochiKit/DateTime.rst

    r180 r297  
    1313 
    1414   stringDate = toISOTimestamp(new Date()); 
    15    daeObject = isoTimestamp(stringDate); 
     15   dateObject = isoTimestamp(stringDate); 
    1616 
    1717