summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-11-21 15:20:17 +0100
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-11-21 15:20:17 +0100
commit57f36ba4d3029b7a217d39b44f4ee8989fb42aaa (patch)
treea6d5d9e9e1725cb28c28b9ca707b9a012d0fe5ec /src
parent304edd816329703919808e5ec851ed946e6f549f (diff)
parent7583953177999aa5258e0a7dd705143f85db0f71 (diff)
downloadscala-57f36ba4d3029b7a217d39b44f4ee8989fb42aaa.tar.gz
scala-57f36ba4d3029b7a217d39b44f4ee8989fb42aaa.tar.bz2
scala-57f36ba4d3029b7a217d39b44f4ee8989fb42aaa.zip
Merge pull request #4138 from stevegury/patch-1
Fix one typo in the scaladoc of Inliners
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/backend/opt/Inliners.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/backend/opt/Inliners.scala b/src/compiler/scala/tools/nsc/backend/opt/Inliners.scala
index 351eb23c4c..aa18b26d93 100644
--- a/src/compiler/scala/tools/nsc/backend/opt/Inliners.scala
+++ b/src/compiler/scala/tools/nsc/backend/opt/Inliners.scala
@@ -26,7 +26,7 @@ import scala.reflect.internal.util.NoSourceFile
* where `p` is defined in a library L, and is accessed from a library C (for Client),
* where C was compiled against L', an optimized version of L where the inliner made `p` public at the bytecode level.
* The only such members are fields, either synthetic or isParamAccessor, and thus having a dollar sign in their name
- * (the accesibility of methods and constructors isn't touched by the inliner).
+ * (the accessibility of methods and constructors isn't touched by the inliner).
*
* Thus we add one more goal to our list:
* (c) Compile C (either optimized or not) against any of L or L',