summaryrefslogtreecommitdiff
path: root/src/library
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 /src/library
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 'src/library')
-rw-r--r--src/library/scala/concurrent/SyncVar.scala4
-rw-r--r--src/library/scala/util/MurmurHash.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/concurrent/SyncVar.scala b/src/library/scala/concurrent/SyncVar.scala
index 0e534a9b22..77bfa95119 100644
--- a/src/library/scala/concurrent/SyncVar.scala
+++ b/src/library/scala/concurrent/SyncVar.scala
@@ -92,7 +92,7 @@ class SyncVar[A] {
// whether or not the SyncVar is already defined. So, set has been
// deprecated in order to eventually be able to make "setting" private
@deprecated("use `put` to ensure a value cannot be overwritten without a corresponding `take`", "2.10.0")
- // NOTE: Used by SBT 0.13.0-M2 and below
+ // NOTE: Used by sbt 0.13.0-M2 and below
def set(x: A): Unit = setVal(x)
/** Place a value in the SyncVar. If the SyncVar already has a stored value,
@@ -112,7 +112,7 @@ class SyncVar[A] {
// whether or not the SyncVar is already defined. So, unset has been
// deprecated in order to eventually be able to make "unsetting" private
@deprecated("use `take` to ensure a value is never discarded", "2.10.0")
- // NOTE: Used by SBT 0.13.0-M2 and below
+ // NOTE: Used by sbt 0.13.0-M2 and below
def unset(): Unit = synchronized {
isDefined = false
value = null.asInstanceOf[A]
diff --git a/src/library/scala/util/MurmurHash.scala b/src/library/scala/util/MurmurHash.scala
index 013825292e..cdc5c821fa 100644
--- a/src/library/scala/util/MurmurHash.scala
+++ b/src/library/scala/util/MurmurHash.scala
@@ -82,7 +82,7 @@ class MurmurHash[@specialized(Int,Long,Float,Double) T](seed: Int) extends (T =>
* needs to be called to finalize the hash.
*/
@deprecated("use the object MurmurHash3 instead", "2.10.0")
-// NOTE: Used by SBT 0.13.0-M2 and below
+// NOTE: Used by sbt 0.13.0-M2 and below
object MurmurHash {
// Magic values used for MurmurHash's 32 bit hash.
// Don't change these without consulting a hashing expert!