Show
Ignore:
Timestamp:
11/14/07 17:18:50 (12 months ago)
Author:
krobillard
Message:

Fixed bug in reverse 'iter when series had one element.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/doc/UserManual

    r497 r498  
    8282block!       []  [a b c] 
    8383paren!       ()  (a b c) 
    84 macro!       <size 2 mul> 
     84macro!       ^(size 2 mul) 
    8585vector!      #[1 2 3]  #[-85.33 2 44.8] 
    8686function!    [2 add] proc :inc2 
     
    114114Example:: 
    115115 
    116     <34 2 mul :border> 
    117  
    118     box-width <border> add 
     116    ^(34 2 mul :border) 
     117 
     118    box-width ^(border) add 
    119119 
    120120Conditional Example:: 
    121121 
    122     <script-env/os [ 
     122    ^(script-env/os [ 
    123123        linux   ["Linux"] 
    124124        solaris ["Solaris"] 
    125125        ["Unsupported OS" error] 
    126      ] case> 
     126     ] case) 
    127127    print 
    128128