diff --git a/src/reference/02-DetailTopics/02-Configuration/01-Classpaths.md b/src/reference/02-DetailTopics/02-Configuration/01-Classpaths.md index 16ebffa5a..c1f279401 100644 --- a/src/reference/02-DetailTopics/02-Configuration/01-Classpaths.md +++ b/src/reference/02-DetailTopics/02-Configuration/01-Classpaths.md @@ -13,7 +13,7 @@ classpaths. ### Basics -In sbt 0.10 and later, classpaths now include the Scala library and +In sbt, the classpath includes the Scala library and (when declared as a dependency) the Scala compiler. Classpath-related settings and tasks typically provide a value of type `Classpath`. This is an alias for `Seq[Attributed[File]]`. diff --git a/src/reference/02-DetailTopics/02-Configuration/10-Paths.md b/src/reference/02-DetailTopics/02-Configuration/10-Paths.md index 2b2865703..996ab5af8 100644 --- a/src/reference/02-DetailTopics/02-Configuration/10-Paths.md +++ b/src/reference/02-DetailTopics/02-Configuration/10-Paths.md @@ -18,7 +18,7 @@ but several methods are augmented through implicits: ### Constructing a File -sbt 0.10+ uses +sbt uses [java.io.File](https://docs.oracle.com/javase/8/docs/api/java/io/File.html) to represent a file and defines the type alias `File` for `java.io.File` so diff --git a/src/reference/02-DetailTopics/04-Tasks-and-Commands/05-Build-State.md b/src/reference/02-DetailTopics/04-Tasks-and-Commands/05-Build-State.md index 082445da3..8a25c4a55 100644 --- a/src/reference/02-DetailTopics/04-Tasks-and-Commands/05-Build-State.md +++ b/src/reference/02-DetailTopics/04-Tasks-and-Commands/05-Build-State.md @@ -156,7 +156,7 @@ to `ProjectRef`s. ### Classpaths -Classpaths in sbt 0.10+ are of type `Seq[Attributed[File]]`. This allows +Classpaths in sbt are of type `Seq[Attributed[File]]`. This allows tagging arbitrary information to classpath entries. sbt currently uses this to associate an `Analysis` with an entry. This is how it manages the information needed for multi-project incremental recompilation. It diff --git a/src/reference/05-Faq/00.md b/src/reference/05-Faq/00.md index 73cf40c4a..909b0eb31 100644 --- a/src/reference/05-Faq/00.md +++ b/src/reference/05-Faq/00.md @@ -334,7 +334,7 @@ proguard := { #### How would I change sbt's classpath dynamically? It is possible to register additional jars that will be placed on sbt's -classpath (since version 0.10.1). Through +classpath. Through [State](../api/sbt/State\$.html), it is possible to obtain a [xsbti.ComponentProvider](../api/xsbti/ComponentProvider.html), which manages application components. Components are groups of files in the