summaryrefslogtreecommitdiff
path: root/src/library/scala/concurrent/ExecutionContext.scala
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2016-05-19 14:57:25 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2016-05-28 21:43:05 +0200
commit5562e1a2eb07b9a541b3eac85a809847e2d48763 (patch)
tree95fd0aef822adc4feb01ed15583a60b2a8b0f284 /src/library/scala/concurrent/ExecutionContext.scala
parent673350e08af72454fe9df87ae7f3292893e44d3c (diff)
downloadscala-5562e1a2eb07b9a541b3eac85a809847e2d48763.tar.gz
scala-5562e1a2eb07b9a541b3eac85a809847e2d48763.tar.bz2
scala-5562e1a2eb07b9a541b3eac85a809847e2d48763.zip
Lower-case spelling of @deprecated messages
Diffstat (limited to 'src/library/scala/concurrent/ExecutionContext.scala')
-rw-r--r--src/library/scala/concurrent/ExecutionContext.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/concurrent/ExecutionContext.scala b/src/library/scala/concurrent/ExecutionContext.scala
index e022b94ea8..f2c3284f92 100644
--- a/src/library/scala/concurrent/ExecutionContext.scala
+++ b/src/library/scala/concurrent/ExecutionContext.scala
@@ -87,7 +87,7 @@ trait ExecutionContext {
* constructed, so that it doesn't need any additional
* preparation later.
*/
- @deprecated("Preparation of ExecutionContexts will be removed.", "2.12")
+ @deprecated("preparation of ExecutionContexts will be removed", "2.12")
def prepare(): ExecutionContext = this
}