Game Development Community

Beta 5 ArrayObject Documentation error

by Nicolas Buquet · in Torque 3D Professional · 08/17/2009 (11:55 am) · 2 replies

on lines 143 to 147
/// This sorts the array.
   /// @param valtest  Determines whether sorting by value or key.
   /// @param valtest  Determines if sorting ascending or descending.
   /// @param valtest  Determines if sorting alpha or numeric search.
   void sort( bool valtest, bool desc, bool numeric );

should be (I think):
/// This sorts the array.
   /// @param valtest  Determines whether sorting by value or key.
   /// @param desc     Determines if sorting ascending or descending.
   /// @param numeric  Determines if sorting alpha or numeric search.
   void sort( bool valtest, bool desc, bool numeric );

Nicolas Buquet
www.buquet-net.com/cv/

#1
08/17/2009 (6:56 pm)
Nice catch! Thanks.

Logged as THREED-679
#2
08/18/2009 (1:31 pm)
Is it just me, or do those two look exactly the same?

Edit: it was just me