Updated Branches:
  refs/heads/master 4a819bd6b -> 360903ff3

Fixed some copy / paste mistakes in the ExecutorDriver javadoc.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/360903ff
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/360903ff
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/360903ff

Branch: refs/heads/master
Commit: 360903ff31d254abc6b3409425bd6ed876389c11
Parents: 4a819bd
Author: Benjamin Mahler <bmah...@twitter.com>
Authored: Wed Dec 11 11:21:55 2013 -0800
Committer: Benjamin Mahler <bmah...@twitter.com>
Committed: Wed Dec 11 11:21:55 2013 -0800

----------------------------------------------------------------------
 src/java/src/org/apache/mesos/ExecutorDriver.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/360903ff/src/java/src/org/apache/mesos/ExecutorDriver.java
----------------------------------------------------------------------
diff --git a/src/java/src/org/apache/mesos/ExecutorDriver.java 
b/src/java/src/org/apache/mesos/ExecutorDriver.java
index f7d288a..cb14f38 100644
--- a/src/java/src/org/apache/mesos/ExecutorDriver.java
+++ b/src/java/src/org/apache/mesos/ExecutorDriver.java
@@ -35,15 +35,15 @@ public interface ExecutorDriver {
   public Status start();
 
   /**
-   * Stops the scheduler driver.
+   * Stops the executor driver.
    */
   public Status stop();
 
   /**
    * Aborts the driver so that no more callbacks can be made to the
-   * scheduler. The semantics of abort and stop have deliberately been
+   * executor. The semantics of abort and stop have deliberately been
    * separated so that code can detect an aborted driver (i.e., via
-   * the return status of {@link SchedulerDriver#join}, see below),
+   * the return status of {@link ExecutorDriver#join}, see below),
    * and instantiate and start another driver if desired (from within
    * the same process ... although this functionality is currently not
    * supported for executors).

Reply via email to