From 4a6b8d0027ccea1b6cb6f056a48f468fb18b0d8e Mon Sep 17 00:00:00 2001 From: waywardmonkeys Date: Thu, 1 Dec 2011 07:25:58 -0800 Subject: [PATCH] Fix spelling error. --- Detailed-Topics/Library-Management.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Detailed-Topics/Library-Management.md b/Detailed-Topics/Library-Management.md index db296bd..457787f 100644 --- a/Detailed-Topics/Library-Management.md +++ b/Detailed-Topics/Library-Management.md @@ -175,13 +175,13 @@ libraryDependencies += "org.apache.felix" % "org.apache.felix.framework" % "1.8. ### Classifiers -You can specify the classifer for a dependency using the `classifier` method. For example, to get the jdk15 version of TestNG: +You can specify the classifier for a dependency using the `classifier` method. For example, to get the jdk15 version of TestNG: ```scala libraryDependencies += "org.testng" % "testng" % "5.7" classifier "jdk15" ``` -To obtain particular classifiers for all dependencies transitively, run the `update-classifiers` task. By default, this resolves all artifacts with the `sources` or `javadoc` classifer. Select the classifiers to obtain by configuring the `transitive-classifiers` setting. For example, to only retrieve sources: +To obtain particular classifiers for all dependencies transitively, run the `update-classifiers` task. By default, this resolves all artifacts with the `sources` or `javadoc` classifier. Select the classifiers to obtain by configuring the `transitive-classifiers` setting. For example, to only retrieve sources: ```scala transitiveClassifiers := Seq("sources")