You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crunch.apache.org by gr...@apache.org on 2014/04/25 08:49:19 UTC

svn commit: r1589941 - /crunch/site/trunk/content/user-guide.mdtext

Author: greid
Date: Fri Apr 25 06:49:19 2014
New Revision: 1589941

URL: http://svn.apache.org/r1589941
Log:
Small change to force a new staging build

Modified:
    crunch/site/trunk/content/user-guide.mdtext

Modified: crunch/site/trunk/content/user-guide.mdtext
URL: http://svn.apache.org/viewvc/crunch/site/trunk/content/user-guide.mdtext?rev=1589941&r1=1589940&r2=1589941&view=diff
==============================================================================
--- crunch/site/trunk/content/user-guide.mdtext (original)
+++ crunch/site/trunk/content/user-guide.mdtext Fri Apr 25 06:49:19 2014
@@ -1127,7 +1127,7 @@ the [ColumnOrder](apidocs/0.9.0/org/apac
 <pre>
   PTable&lt;String, Long&gt; table = ...;
   // Sorted by value, instead of key -- remember, a PTable is a PCollection of Pairs.
-  PCollection&lt;Pair&lt;String, Long&gt;&gt; valueSort = Sort.sortPairs(table, ColumnOrder.by(1, Sort.Order.DESCENDING));
+  PCollection&lt;Pair&lt;String, Long&gt;&gt; sortedByValue = Sort.sortPairs(table, ColumnOrder.by(1, Sort.Order.DESCENDING));
 </pre>
 
 <a name="secsort"></a>