Skip to content

Commit

Permalink
Merge pull request #392 from ritschwumm/patch-1
Browse files Browse the repository at this point in the history
fix typo in log message
  • Loading branch information
eed3si9n authored Dec 29, 2024
2 parents 39e6b1a + 4356b4f commit 4aab2d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private[sbt] class FileTreeRepositoryImpl[T] extends FileTreeRepository[FileAttr
}
private[this] def throwIfClosed(method: String): Unit =
if (closed.get()) {
val ex = new IllegalStateException(s"Tried to invoke $method on closed repostitory $this")
val ex = new IllegalStateException(s"Tried to invoke $method on closed repository $this")
ex.printStackTrace()
throw ex
}
Expand Down

0 comments on commit 4aab2d8

Please sign in to comment.