From f6c8faa9929639b394e6e7e574c9f5dd59094b76 Mon Sep 17 00:00:00 2001 From: j-keck Date: Thu, 20 Nov 2014 09:11:15 +0100 Subject: [PATCH] fix typo --- main/src/main/scala/sbt/SessionSettings.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/src/main/scala/sbt/SessionSettings.scala b/main/src/main/scala/sbt/SessionSettings.scala index ff70359a5..1e61c82f0 100755 --- a/main/src/main/scala/sbt/SessionSettings.scala +++ b/main/src/main/scala/sbt/SessionSettings.scala @@ -176,7 +176,7 @@ object SessionSettings { reapply(newSession.copy(original = newSession.mergeSettings, append = Map.empty), s) } - @deprecated("This method will no longer be publlic", "0.13.7") + @deprecated("This method will no longer be public", "0.13.7") def writeSettings(pref: ProjectRef, settings: List[SessionSetting], original: Seq[Setting[_]], structure: BuildStructure): (Seq[SessionSetting], Seq[Setting[_]]) = { val project = Project.getProject(pref, structure).getOrElse(sys.error("Invalid project reference " + pref)) val writeTo: File = BuildPaths.configurationSources(project.base).headOption.getOrElse(new File(project.base, "build.sbt")) @@ -217,7 +217,7 @@ object SessionSettings { (newWithPos.reverse, other ++ oldShifted) } - @deprecated("This method will no longer be publlic", "0.13.7") + @deprecated("This method will no longer be public", "0.13.7") def needsTrailingBlank(lines: Seq[String]) = !lines.isEmpty && !lines.takeRight(1).exists(_.trim.isEmpty) /** Prints all the user-defined SessionSettings (not raw) to System.out. */