summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/backend/opt/Inliners.scala
diff options
context:
space:
mode:
authorSteve Gury <steve.gury@gmail.com>2014-11-20 15:13:27 -0800
committerSteve Gury <steve.gury@gmail.com>2014-11-20 15:13:27 -0800
commit7583953177999aa5258e0a7dd705143f85db0f71 (patch)
tree50f57ffcd8875c5139398730e93127fa776fd14b /src/compiler/scala/tools/nsc/backend/opt/Inliners.scala
parent495fdb3d72194c8b5010e98a1186ccafc95fbd8a (diff)
downloadscala-7583953177999aa5258e0a7dd705143f85db0f71.tar.gz
scala-7583953177999aa5258e0a7dd705143f85db0f71.tar.bz2
scala-7583953177999aa5258e0a7dd705143f85db0f71.zip
Fix one typo in the scaladoc of Inliners
The Scaladoc of `Inliners` contained one tiny typo for the word "accessibility". This PR only fixes this typo.
Diffstat (limited to 'src/compiler/scala/tools/nsc/backend/opt/Inliners.scala')
-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',