From 9140bbe658a7fe6dd243258ee1215e6cc0d174ea Mon Sep 17 00:00:00 2001
From: Luke Murphy <lukewm@riseup.net>
Date: Sun, 3 Nov 2019 16:28:47 +0100
Subject: [PATCH] Fix documentation build

---
 CHANGELOG.rst                    |  2 +-
 documentation/source/example.rst | 24 ++++++++++++++++++++++++
 2 files changed, 25 insertions(+), 1 deletion(-)
 create mode 100644 documentation/source/example.rst

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 8438b5d..2ee8352 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,7 +2,7 @@ Flat_Tree 0.0.1a3 (2019-07-01)
 ==============================
 
 Improved Documentation
---------
+----------------------
 
 - Use the sphinx_rtd_theme.
 - Attempt to clarify sections using better navigation.
diff --git a/documentation/source/example.rst b/documentation/source/example.rst
new file mode 100644
index 0000000..04dda6a
--- /dev/null
+++ b/documentation/source/example.rst
@@ -0,0 +1,24 @@
+*******
+Example
+*******
+
+You can represent a binary tree in a simple flat list using the following structure.
+
+.. code-block:: python
+
+    """
+
+         3
+     1       5
+   0   2   4   6  ...
+
+   """
+
+This module exposes a series of functions to help you build and maintain this data structure.
+
+.. code-block:: python
+
+    from flat_tree import FlatTreeAccessor
+
+    tree_access = FlatTreeAccessor()
+    tree_access.index(1, 0)  # get index @ depth: 1, offset: 0