Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3672

Show
Ignore:
Timestamp:
06/23/08 23:51:38 (4 months ago)
Author:
kris
Message:

fixed comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/container/more/Stack.d

    r3667 r3672  
    1818 
    1919        A stack of the given value-type V, with maximum depth Size. Note 
    20         that, being a struct, this is a stack-based Stack 
     20        that this does not generate any heap activity 
    2121 
    2222******************************************************************************/ 
  • trunk/tango/util/container/more/Vector.d

    r3668 r3672  
    2020 
    2121        A vector of the given value-type V, with maximum depth Size. Note 
    22         that this is a value type, and does no memory allocation of its 
    23         own  
     22        that this does no memory allocation of its own  
    2423 
    2524******************************************************************************/ 
     
    3130 
    3231        alias slice             opSlice; 
     32        alias add               opCatAssign; 
    3333           
    3434        /***********************************************************************