Return-Path: X-Original-To: apmail-crunch-commits-archive@www.apache.org Delivered-To: apmail-crunch-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A722211F09 for ; Fri, 25 Apr 2014 06:49:52 +0000 (UTC) Received: (qmail 90338 invoked by uid 500); 25 Apr 2014 06:49:52 -0000 Delivered-To: apmail-crunch-commits-archive@crunch.apache.org Received: (qmail 90281 invoked by uid 500); 25 Apr 2014 06:49:45 -0000 Mailing-List: contact commits-help@crunch.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@crunch.apache.org Delivered-To: mailing list commits@crunch.apache.org Received: (qmail 90270 invoked by uid 99); 25 Apr 2014 06:49:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2014 06:49:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Apr 2014 06:49:42 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C168923888E2; Fri, 25 Apr 2014 06:49:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1589941 - /crunch/site/trunk/content/user-guide.mdtext Date: Fri, 25 Apr 2014 06:49:19 -0000 To: commits@crunch.apache.org From: greid@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140425064919.C168923888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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
   PTable<String, Long> table = ...;
   // Sorted by value, instead of key -- remember, a PTable is a PCollection of Pairs.
-  PCollection<Pair<String, Long>> valueSort = Sort.sortPairs(table, ColumnOrder.by(1, Sort.Order.DESCENDING));
+  PCollection<Pair<String, Long>> sortedByValue = Sort.sortPairs(table, ColumnOrder.by(1, Sort.Order.DESCENDING));