Added folder howto/ for capturing simple cookbook topics
Fixed a few silly trailing whitespace typos.

Change-Id: Id14c19477299d1c76f2c0227e4dc0882f6721e0f
diff --git a/VERSION b/VERSION
index 1a285c3..a158d08 100755
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.10.5
+2.10.6
diff --git a/howto/edit_voltha_docs.rst b/howto/edit_voltha_docs.rst
new file mode 100644
index 0000000..463e86c
--- /dev/null
+++ b/howto/edit_voltha_docs.rst
@@ -0,0 +1,27 @@
+Modify docs.voltha.org
+======================
+
+Docs for VOLTHA can be found on the website or via web search:
+
+- https://docs.voltha.org
+- https://docs.voltha.org/master/index.html
+
+   - Note: Google search may return an older doc version for topics.
+   - Navigate to /master/index.html and use the builtin searchbox to always view current documentation for VOLTHA.
+
+Browse repository content:
+
+- https://gerrit.opencord.org/plugins/gitiles/voltha-docs
+
+Checkout, modify and test:
+
+.. sourcecode:: shell
+
+   $ git clone ssh://gerrit.opencord.org:29418/voltha-docs
+
+   $ cd voltha-docs
+   $ vi *.rst
+   $ make html           # doc generation
+   $ make test           # syntax check *.rst files
+
+   $ "$BROWSER" _build/html/index.html  # BROWSER='firefox'
diff --git a/index.rst b/index.rst
index bf901a2..7680525 100644
--- a/index.rst
+++ b/index.rst
@@ -202,3 +202,9 @@
    :glob:
 
    release_notes/*
+
+.. toctree::
+   :maxdepth: 2
+   :caption: HOWTO Topics
+
+   howto/edit_voltha_docs