Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix typo in sbtplugin, s/Arttifact/Artifact/g
  • Loading branch information
havocp committed Jun 5, 2012
1 parent bce528c commit 61b90ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -21,7 +21,7 @@ object MimaPlugin extends Plugin {
currentClassfiles <<= classDirectory in Compile map identity,
previousClassfiles <<= (ivySbt, previousArtifact, streams) map { (i, optArt, s) =>
val art = optArt getOrElse sys.error("No previous-artifact defined. Cannot check binary compatibility.")
SbtMima.getPreviousArttifact(art, i, s)
SbtMima.getPreviousArtifact(art, i, s)
},
fullClasspath in findBinaryIssues <<= fullClasspath in Compile
) ++ mimaReportSettings
Expand Down
Expand Up @@ -47,7 +47,7 @@ object SbtMima {
/** Resolves an artifact representing the previous abstract binary interface
* for testing.
*/
def getPreviousArttifact(m: ModuleID, ivy: IvySbt, s: TaskStreams): File = {
def getPreviousArtifact(m: ModuleID, ivy: IvySbt, s: TaskStreams): File = {
val moduleSettings = InlineConfiguration(
"dummy" % "test" % "version",
ModuleInfo("dummy-test-project-for-resolving"),
Expand Down

0 comments on commit 61b90ad

Please sign in to comment.