doc/book/en/tutorials/base/blog-in-five-minutes.rst
branchstable
changeset 6837 7562418985ef
parent 6835 87e2641d75f7
--- a/doc/book/en/tutorials/base/blog-in-five-minutes.rst	Mon Jan 17 13:36:18 2011 +0100
+++ b/doc/book/en/tutorials/base/blog-in-five-minutes.rst	Mon Jan 17 15:45:26 2011 +0100
@@ -10,7 +10,7 @@
 
     cubicweb, cubicweb-dev, cubicweb-blog
 
-For Windows or Mac OS X users, you must install |cubicweb| from source (see
+Windows or Mac OS X users must install |cubicweb| from source (see
 :ref:`SourceInstallation` and :ref:`WindowsInstallation`).
 
 Then create and initialize your instance::
@@ -20,8 +20,8 @@
 You'll be asked a few questions, and you can keep the default answer for most of
 them. The one question you'll have to think about is the database you'll want to
 use for that instance. For a quick test, if you don't have `postgresql` installed
-and configured (see :ref:`PostgresqlConfiguration`), it's higly recommended to
-choose `sqlite` when asked for which database driber to use, since it has a much
+and configured (see :ref:`PostgresqlConfiguration`), it's highly recommended to
+choose `sqlite` when asked for which database driver to use, since it has a much
 simple setup (no database server needed).
 
 One the process is completed (including database initialisation), you can start
@@ -29,23 +29,25 @@
 
     cubicweb-ctl start -D myblog
 
-The `-D` option activate the debugging mode, removing it will launch the instance
-as a daemon in the background.
+The `-D` option activates the debugging mode. Removing it will launch the instance
+as a daemon in the background, and ``cubicweb-ctl stop myblog`` will stop
+it in that case. 
 
 
-About file-system permissions
+About file system permissions
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Unless you installed from sources, above commands assumes that you have root
-access to the :file:`/etc/` path. In order to initialize your instance as a
-regulary user, within your home directory, you can use the :envvar:`CW_MODE`
+Unless you installed from sources, the above commands assume that you have root
+access to the :file:`/etc/` directory. In order to initialize your instance as a
+regular user, within your home directory, you can use the :envvar:`CW_MODE`
 environment variable: ::
 
   export CW_MODE=user
 
 then create a :file:`~/etc/cubicweb.d` directory that will hold your instances.
 
-More information about how to configure your own environment in :ref:`ResourceMode`.
+More information about how to configure your own environment is
+available in :ref:`ResourceMode`.
 
 
 Instance parameters
@@ -59,10 +61,10 @@
 
      cubicweb-ctl db-create myblog
 
-Other paramaters, like web server or emails parameters, can be modified in the
+Other parameters, like web server or emails parameters, can be modified in the
 :file:`/etc/cubicweb.d/myblog/all-in-one.conf` file.
 
 You'll have to restart the instance after modification in one of those files.
 
-This is it. Your blog is functionnal and running. Visit http://localhost:8080 and enjoy it!
+This is it. Your blog is functional and running. Visit http://localhost:8080 and enjoy it!