summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDale Wijnand <dale.wijnand@gmail.com>2016-12-21 13:02:36 +0000
committerDale Wijnand <dale.wijnand@gmail.com>2016-12-21 13:11:16 +0000
commitf678a57df8ea27e1b5f489715904dc823bcef123 (patch)
tree0bb0e2ffb46683d9c7aaa0bbddd36ebee78a75ad /test
parent246653f024c13ba0348fec3f83b147de11251fe3 (diff)
downloadscala-f678a57df8ea27e1b5f489715904dc823bcef123.tar.gz
scala-f678a57df8ea27e1b5f489715904dc823bcef123.tar.bz2
scala-f678a57df8ea27e1b5f489715904dc823bcef123.zip
Fix how "sbt" is written
"sbt" is not an acronym (it used to be, but it isn't any longer). It's a proper name, like "iPhone" or "eBay". So, just like you wouldn't write "Get Started With EBay" or "How To Reset Your IPhone", we don't write "Using the Sbt Build".
Diffstat (limited to 'test')
-rw-r--r--test/benchmarks/README.md8
-rw-r--r--test/files/pos/t5120.scala2
-rw-r--r--test/files/pos/t8947/Macro_1.scala2
3 files changed, 6 insertions, 6 deletions
diff --git a/test/benchmarks/README.md b/test/benchmarks/README.md
index 6c77b83605..a5f1e0f6be 100644
--- a/test/benchmarks/README.md
+++ b/test/benchmarks/README.md
@@ -1,7 +1,7 @@
# Scala library benchmarks
-This directory is a standalone SBT project, within the Scala project,
-that makes use of the [SBT plugin](https://github.com/ktoso/sbt-jmh) for [JMH](http://openjdk.java.net/projects/code-tools/jmh/).
+This directory is a standalone sbt project, within the Scala project,
+that makes use of the [sbt plugin](https://github.com/ktoso/sbt-jmh) for [JMH](http://openjdk.java.net/projects/code-tools/jmh/).
## Running a benchmark
@@ -16,10 +16,10 @@ Using this example, one would simply run
jmh:runMain scala.collection.mutable.OpenHashMapRunner
-in SBT, run _from this directory_ (`test/benchmarks`).
+in sbt, run _from this directory_ (`test/benchmarks`).
The JMH results can be found under `target/jmh-results/`.
-`target` gets deleted on an SBT `clean`,
+`target` gets deleted on an sbt `clean`,
so you should copy these files out of `target` if you wish to preserve them.
## Creating a benchmark and runner
diff --git a/test/files/pos/t5120.scala b/test/files/pos/t5120.scala
index 86d4470bd5..40540b8a7d 100644
--- a/test/files/pos/t5120.scala
+++ b/test/files/pos/t5120.scala
@@ -1,4 +1,4 @@
-// An example extracted from SBT by Iulian
+// An example extracted from sbt by Iulian
// that showed that the previous fix to t5120
// was too strict.
class Test {
diff --git a/test/files/pos/t8947/Macro_1.scala b/test/files/pos/t8947/Macro_1.scala
index ace389f339..c669e68b1e 100644
--- a/test/files/pos/t8947/Macro_1.scala
+++ b/test/files/pos/t8947/Macro_1.scala
@@ -36,6 +36,6 @@ object X {
// }
//
// To make this visible to the macro implementation, it will need to be compiled in an earlier stage,
- // e.g a separate SBT sub-project.
+ // e.g a separate sbt sub-project.
}