aboutsummaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-02-21 17:15:02 +0100
committerMartin Odersky <odersky@gmail.com>2017-02-21 17:15:02 +0100
commitd8c7a7ae0e981a2abd9e973617ef575270dd30a5 (patch)
tree5a8bb01466a3add85ef59b9e0ad8d1eb1ee1c2c2 /compiler
parent08f4c3e72485bf01d37f9ea84b2ae8bfea27d049 (diff)
downloaddotty-d8c7a7ae0e981a2abd9e973617ef575270dd30a5.tar.gz
dotty-d8c7a7ae0e981a2abd9e973617ef575270dd30a5.tar.bz2
dotty-d8c7a7ae0e981a2abd9e973617ef575270dd30a5.zip
Fix typos
Diffstat (limited to 'compiler')
-rw-r--r--compiler/src/dotty/tools/dotc/typer/Implicits.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/src/dotty/tools/dotc/typer/Implicits.scala b/compiler/src/dotty/tools/dotc/typer/Implicits.scala
index 627ce6f77..6c8ecd3c8 100644
--- a/compiler/src/dotty/tools/dotc/typer/Implicits.scala
+++ b/compiler/src/dotty/tools/dotc/typer/Implicits.scala
@@ -544,7 +544,7 @@ trait Implicits { self: Typer =>
}
/** The context to be used when resolving a by-name implicit argument.
- * This makes any implicit stored under `DelayedIplicit` visible and
+ * This makes any implicit stored under `DelayedImplicit` visible and
* stores in turn the given `lazyImplicit` as new `DelayedImplicit`.
*/
def lazyImplicitCtx(lazyImplicit: Symbol): Context = {
@@ -555,8 +555,8 @@ trait Implicits { self: Typer =>
}
/** formalValue: The value type for which an implicit is searched
- * lazyIplicit: An implicit symbol to install for nested by-name resolutions
- * argCtx : The context to be used for searching the implicit argument
+ * lazyImplicit: An implicit symbol to install for nested by-name resolutions
+ * argCtx : The context to be used for searching the implicit argument
*/
val (formalValue, lazyImplicit, argCtx) = formal match {
case ExprType(fv) =>