summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoragronholm <devnull@localhost>2011-04-25 12:16:04 +0300
committeragronholm <devnull@localhost>2011-04-25 12:16:04 +0300
commite78ff9b7db40d3c6623a23caf063c40b5763fd3f (patch)
tree6ff7c7a9968d0b1d3e2c1cf99a0240fad0ec1636 /docs
parentd666bad50d8032b48525ffcf5074eb9e33db5ce0 (diff)
downloadapscheduler-e78ff9b7db40d3c6623a23caf063c40b5763fd3f.tar.gz
Minor clarifications
Diffstat (limited to 'docs')
-rw-r--r--docs/index.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/index.rst b/docs/index.rst
index a005f2c..6b2b227 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -187,14 +187,14 @@ Job stores
APScheduler keeps all the scheduled jobs in *job stores*. Job stores are
configurable adapters to some back-end that may or may not support persisting
job configurations on disk, database or something else. Job stores are added
-to the scheduler and identified by their aliases. The alias "default" is special
-in that if the user does not explicitly specify a job store alias when scheduling
-a job, it goes to the "default" job store. If there is no job store in the
-scheduler by that name when the scheduler is started, a new job store of type
-:class:`~apscheduler.jobstores.ram_store.RAMJobStore` is created to serve as
-the default.
-
-The built-in job stores are:
+to the scheduler and identified by their aliases. The alias ``default`` is
+special in that if the user does not explicitly specify a job store alias when
+scheduling a job, it goes to the ``default`` job store. If there is no job
+store in the scheduler by that name when the scheduler is started, a new job
+store of type :class:`~apscheduler.jobstores.ram_store.RAMJobStore` is created
+to serve as the default.
+
+The other built-in job stores are:
* :class:`~apscheduler.jobstores.shelve_store.ShelveJobStore`
* :class:`~apscheduler.jobstores.sqlalchemy_store.SQLAlchemyJobStore`