summaryrefslogtreecommitdiff
path: root/test/disabled/presentation
diff options
context:
space:
mode:
authorBlair Zajac <blair@orcaware.com>2011-12-06 10:25:40 -0800
committerBlair Zajac <blair@orcaware.com>2011-12-06 10:25:40 -0800
commit50e943fe5017d574439f7a2c5c7037d49f8952bc (patch)
treee0e698d3104c886178057cfe4ffae12b6ab03f6f /test/disabled/presentation
parent526c086e121d8d6c15726c769edbf96efd882ae7 (diff)
downloadscala-50e943fe5017d574439f7a2c5c7037d49f8952bc.tar.gz
scala-50e943fe5017d574439f7a2c5c7037d49f8952bc.tar.bz2
scala-50e943fe5017d574439f7a2c5c7037d49f8952bc.zip
Fix documentation stutters.
Diffstat (limited to 'test/disabled/presentation')
-rw-r--r--test/disabled/presentation/akka/src/akka/actor/ActorRef.scala2
-rw-r--r--test/disabled/presentation/akka/src/akka/routing/Pool.scala2
-rw-r--r--test/disabled/presentation/akka/src/akka/util/ListenerManagement.scala4
3 files changed, 4 insertions, 4 deletions
diff --git a/test/disabled/presentation/akka/src/akka/actor/ActorRef.scala b/test/disabled/presentation/akka/src/akka/actor/ActorRef.scala
index 07fa358744..ff67c9468e 100644
--- a/test/disabled/presentation/akka/src/akka/actor/ActorRef.scala
+++ b/test/disabled/presentation/akka/src/akka/actor/ActorRef.scala
@@ -471,7 +471,7 @@ trait ActorRef extends ActorRefShared with java.lang.Comparable[ActorRef] { scal
* <p/>
* To be invoked from within the actor itself.
*/
- @deprecated("Will be removed after 1.1, use use Actor.remote.actorOf instead and then link on success", "1.1")
+ @deprecated("Will be removed after 1.1, use Actor.remote.actorOf instead and then link on success", "1.1")
def spawnLink(clazz: Class[_ <: Actor]): ActorRef
/**
diff --git a/test/disabled/presentation/akka/src/akka/routing/Pool.scala b/test/disabled/presentation/akka/src/akka/routing/Pool.scala
index 0fd1bc8f49..d972bb84c8 100644
--- a/test/disabled/presentation/akka/src/akka/routing/Pool.scala
+++ b/test/disabled/presentation/akka/src/akka/routing/Pool.scala
@@ -220,7 +220,7 @@ trait BoundedCapacityStrategy extends CapacityStrategy with BoundedCapacitor
*/
/**
- * The basic filter trait that composes ramp-up and and back-off subfiltering.
+ * The basic filter trait that composes ramp-up and back-off subfiltering.
*/
trait Filter {
def rampup(pressure: Int, capacity: Int): Int
diff --git a/test/disabled/presentation/akka/src/akka/util/ListenerManagement.scala b/test/disabled/presentation/akka/src/akka/util/ListenerManagement.scala
index 7065397a45..863e905d59 100644
--- a/test/disabled/presentation/akka/src/akka/util/ListenerManagement.scala
+++ b/test/disabled/presentation/akka/src/akka/util/ListenerManagement.scala
@@ -22,7 +22,7 @@ trait ListenerManagement {
protected def manageLifeCycleOfListeners: Boolean = true
/**
- * Adds the <code>listener</code> this this registry's listener list.
+ * Adds the <code>listener</code> this registry's listener list.
* The <code>listener</code> is started by this method if manageLifeCycleOfListeners yields true.
*/
def addListener(listener: ActorRef) {
@@ -31,7 +31,7 @@ trait ListenerManagement {
}
/**
- * Removes the <code>listener</code> this this registry's listener list.
+ * Removes the <code>listener</code> this registry's listener list.
* The <code>listener</code> is stopped by this method if manageLifeCycleOfListeners yields true.
*/
def removeListener(listener: ActorRef) {