Skip to content

Commit

Permalink
sortOn return value
Browse files Browse the repository at this point in the history
  • Loading branch information
kemsky committed Jan 22, 2016
1 parent 39add42 commit 7405ced
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/com/kemsky/Stream.as
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@ package com.kemsky
* Sorts the elements in a list. This method sorts according to Unicode values. (ASCII is a subset of Unicode.)
* @param options flag that determines the behavior of the sort.
* @param callback specifies a comparison function.
* @return The return value depends on whether you pass any arguments.
* @return sorted Stream.
* @see com.kemsky.Stream#CASEINSENSITIVE
* @see com.kemsky.Stream#NUMERIC
* @see com.kemsky.Stream#DESCENDING
Expand Down Expand Up @@ -1751,7 +1751,7 @@ package com.kemsky
* the second represents the secondary sort field, and so on.
* @param options One or more numbers or names of defined constants, separated
* by the bitwise OR (|) operator, that change the sorting behavior.
* @return The return value depends on whether you pass any parameters.
* @return sorted Stream.
* @see com.kemsky.Stream#CASEINSENSITIVE
* @see com.kemsky.Stream#NUMERIC
* @see com.kemsky.Stream#DESCENDING
Expand All @@ -1767,7 +1767,7 @@ package com.kemsky
* </pre>
* @internal mutable
*/
public function sortOn(names:Object, options:Object = null):*
public function sortOn(names:Object, options:Object = null):Stream
{
var result:* = source.sortOn.apply(null, [names, options]);

Expand Down

0 comments on commit 7405ced

Please sign in to comment.