From 85f55690defaf1477e514b6f737892f2e2c4479a Mon Sep 17 00:00:00 2001 From: odersky Date: Mon, 13 Nov 2023 18:26:52 +0100 Subject: [PATCH] Update compiler/src/dotty/tools/dotc/typer/Typer.scala [Cherry-picked e0f036cd744bfc7e034000bc3fef94e18ce2a2b8] --- compiler/src/dotty/tools/dotc/typer/Typer.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/dotty/tools/dotc/typer/Typer.scala b/compiler/src/dotty/tools/dotc/typer/Typer.scala index 5d114325ad42..864a52c8c538 100644 --- a/compiler/src/dotty/tools/dotc/typer/Typer.scala +++ b/compiler/src/dotty/tools/dotc/typer/Typer.scala @@ -1100,7 +1100,7 @@ class Typer(@constructorOnly nestingLevel: Int = 0) extends Namer case fn @ Ident(name: TermName) => // We need to make sure that the prefix of this extension getter is // retained when we transform it into a setter. Otherwise, we could - // end up resoving an unrelated setter from another extension. We + // end up resolving an unrelated setter from another extension. We // transform the `Ident` into a `Select` to ensure that the prefix // is retained with a `TypedSplice` (see `case Select` bellow). // See tests/pos/i18713.scala for an example.