From d4cdb11b53a7db3e8b93fccb2be1bec76150ee20 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Tue, 13 Mar 2018 17:47:11 +0900 Subject: [PATCH] typo fix --- main-settings/src/main/scala/sbt/Scope.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main-settings/src/main/scala/sbt/Scope.scala b/main-settings/src/main/scala/sbt/Scope.scala index 10d49dfaf..ff74ebbfc 100644 --- a/main-settings/src/main/scala/sbt/Scope.scala +++ b/main-settings/src/main/scala/sbt/Scope.scala @@ -267,7 +267,7 @@ object Scope { val scope = Scope.replaceThis(GlobalScope)(rawScope) // This is a hot method that gets called many times - def exandDelegateScopes(resolvedProj: ResolvedReference)( + def expandDelegateScopes(resolvedProj: ResolvedReference)( pLin: Seq[ScopeAxis[ResolvedReference]]): Vector[Scope] = { val tLin = scope.task match { case t @ Select(_) => linearize(t)(taskInherit) @@ -316,7 +316,7 @@ object Scope { case pr: ProjectRef => index.project(pr) case br: BuildRef => List(Select(br), Zero) } - exandDelegateScopes(resolvedProj)(projAxes) + expandDelegateScopes(resolvedProj)(projAxes) } }