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

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


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

commit e8699d0bd585e042b63129581cd8a83487cb32a2
Author: Wanqiang Ji <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to