You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aa...@apache.org on 2020/09/29 14:08:49 UTC

[hadoop] branch branch-3.2 updated: MAPREDUCE-7289. Fix wrong comment in LongLong.java (#2338)

This is an automated email from the ASF dual-hosted git repository.

aajisaka pushed a commit to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.2 by this push:
     new 578370d  MAPREDUCE-7289. Fix wrong comment in LongLong.java (#2338)
578370d is described below

commit 578370d6c85938a458595a84fa5e95d0b490123e
Author: Wanqiang Ji <ji...@apache.org>
AuthorDate: Tue Sep 29 22:06:25 2020 +0800

    MAPREDUCE-7289. Fix wrong comment in LongLong.java (#2338)
    
    (cherry picked from commit 143bdd41885a43c7bc6e11f0c0d6e5820768aa2c)
---
 .../src/main/java/org/apache/hadoop/examples/pi/math/LongLong.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/pi/math/LongLong.java b/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/pi/math/LongLong.java
index 3ad8f29..8d7e7a0 100644
--- a/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/pi/math/LongLong.java
+++ b/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/pi/math/LongLong.java
@@ -44,7 +44,7 @@ class LongLong {
     return d0 & mask;
   }
 
-  /** Shift right operation (<<). */
+  /** Shift right operation (>>). */
   long shiftRight(int n) {
     return (d1 << (BITS_PER_LONG - n)) + (d0 >>> n);
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org