summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-06-10 11:53:22 +0200
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-06-10 11:53:22 +0200
commited3df58ab167f660825e675b6b45eb454fc9869b (patch)
treedcd3b8fbfd11ad65bd1da33dd621f2cb5d5710de
parent291b5c6d39de9f43e16aadab4469962b44a5fb7f (diff)
parent17b99e2587251cdb02e9d96fc2f87143be3160b8 (diff)
downloadscala-ed3df58ab167f660825e675b6b45eb454fc9869b.tar.gz
scala-ed3df58ab167f660825e675b6b45eb454fc9869b.tar.bz2
scala-ed3df58ab167f660825e675b6b45eb454fc9869b.zip
Merge pull request #3810 from harryhuk/patch-1
Update AnyVals.scala
-rw-r--r--src/compiler/scala/tools/cmd/gen/AnyVals.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/cmd/gen/AnyVals.scala b/src/compiler/scala/tools/cmd/gen/AnyVals.scala
index 842851b4f6..e78589908c 100644
--- a/src/compiler/scala/tools/cmd/gen/AnyVals.scala
+++ b/src/compiler/scala/tools/cmd/gen/AnyVals.scala
@@ -111,8 +111,8 @@ import scala.language.implicitConversions"""
" */"),
Op(">>", "/**\n" +
- " * Returns this value bit-shifted left by the specified number of bits,\n" +
- " * filling in the right bits with the same value as the left-most bit of this.\n" +
+ " * Returns this value bit-shifted right by the specified number of bits,\n" +
+ " * filling in the left bits with the same value as the left-most bit of this.\n" +
" * The effect of this is to retain the sign of the value.\n" +
" * @example {{{\n" +
" * -21 >> 3 == -3\n" +