From e0f036cd744bfc7e034000bc3fef94e18ce2a2b8 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 --- 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 ac90664ddddf..bd83fbd864e0 100644 --- a/compiler/src/dotty/tools/dotc/typer/Typer.scala +++ b/compiler/src/dotty/tools/dotc/typer/Typer.scala @@ -1121,7 +1121,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.