Changeset 613

Show
Ignore:
Timestamp:
02/14/06 12:13:03 (4 years ago)
Author:
beau@…
Message:

fix typo, bulit -> build

Location:
mochikit/trunk/doc
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • mochikit/trunk/doc/html/MochiKit/Iter.html

    r546 r613  
    4040<p>MochiKit.Iter defines a standard way to iterate over anything, that you can 
    4141extend with <a class="mochiref reference" href="#fn-registeriterator">registerIterator</a>, or by implementing the <tt class="docutils literal"><span class="pre">.iter()</span></tt> 
    42 protocol.  Iterators are lazy, so it can potentially be cheaper to built a 
     42protocol.  Iterators are lazy, so it can potentially be cheaper to build a 
    4343filter chain of iterators than to build lots of intermediate arrays. 
    4444Especially when the data set is very large, but the result is not.</p> 
  • mochikit/trunk/doc/rst/MochiKit/Iter.rst

    r474 r613  
    3434MochiKit.Iter defines a standard way to iterate over anything, that you can 
    3535extend with :mochiref:`registerIterator`, or by implementing the ``.iter()`` 
    36 protocol.  Iterators are lazy, so it can potentially be cheaper to built a 
     36protocol.  Iterators are lazy, so it can potentially be cheaper to build a 
    3737filter chain of iterators than to build lots of intermediate arrays. 
    3838Especially when the data set is very large, but the result is not.