You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2010/02/04 08:03:02 UTC

svn commit: r906380 - /sling/trunk/bundles/commons/scheduler/src/main/java/org/apache/sling/commons/scheduler/Scheduler.java

Author: cziegeler
Date: Thu Feb  4 07:03:01 2010
New Revision: 906380

URL: http://svn.apache.org/viewvc?rev=906380&view=rev
Log:
Fix typos.

Modified:
    sling/trunk/bundles/commons/scheduler/src/main/java/org/apache/sling/commons/scheduler/Scheduler.java

Modified: sling/trunk/bundles/commons/scheduler/src/main/java/org/apache/sling/commons/scheduler/Scheduler.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/commons/scheduler/src/main/java/org/apache/sling/commons/scheduler/Scheduler.java?rev=906380&r1=906379&r2=906380&view=diff
==============================================================================
--- sling/trunk/bundles/commons/scheduler/src/main/java/org/apache/sling/commons/scheduler/Scheduler.java (original)
+++ sling/trunk/bundles/commons/scheduler/src/main/java/org/apache/sling/commons/scheduler/Scheduler.java Thu Feb  4 07:03:01 2010
@@ -23,7 +23,7 @@
 
 /**
  * A scheduler to schedule time/cron based jobs.
- * A job is an object which is executed/fired by the scheduler. The object
+ * A job is an object that is executed/fired by the scheduler. The object
  * should either implement the {@link Job} interface or the {@link Runnable}
  * interface.
  */
@@ -45,7 +45,7 @@
 
     /**
      * Schedule a time based job.
-     * Note that if a job with the same name has already beed added, the old job is cancelled and this new job replaces
+     * Note that if a job with the same name has already been added, the old job is cancelled and this new job replaces
      * the old job.
      *
      * @param name The name of the job - or null. If no name is specified it can't be cancelled.
@@ -62,7 +62,7 @@
     /**
      * Schedule a periodic job.
      * The job is started the first time when the period has passed.
-     * Note that if a job with the same name has already beed added, the old job is cancelled and this new job replaces
+     * Note that if a job with the same name has already been added, the old job is cancelled and this new job replaces
      * the old job.
      *
      * @param name The name of the job - or null. If no name is specified it can't be cancelled.
@@ -102,7 +102,7 @@
 
     /**
      * Fire a job once at a specific date
-     * Note that if a job with the same name has already beed added, the old job is cancelled and this new job replaces
+     * Note that if a job with the same name has already been added, the old job is cancelled and this new job replaces
      * the old job.
      *
      * @param name The name of the job - or null. If no name is specified it can't be cancelled.
@@ -117,7 +117,7 @@
 
     /**
      * Fire a job once at a specific date, several times with a given interval.
-     * Note that if a job with the same name has already beed added, the old job is cancelled and this new job replaces
+     * Note that if a job with the same name has already been added, the old job is cancelled and this new job replaces
      * the old job.
      *
      * @param name The name of the job - or null. If no name is specified it can't be cancelled.