Fix version history item numbering

The last item in the 'New Features' section restarts the enumeration
because the indention of the previous subitem is one space short.

Change-Id: Ifa2873d3e2ddd6bac5034b48207775019ef1c462
diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst
index 6bd8da9..b5baf41 100644
--- a/docs/source/version_history.rst
+++ b/docs/source/version_history.rst
@@ -46,19 +46,19 @@
      ``isinf``, ``isnormal``, ``isfinite``, ``fpclassify`` (new),
      ``fmin``, ``fmax``
 
-  * It is now possible to safely compare a :class:`Jet` against a scalar
-    (or literal) without constructing a :class:`Jet` first (even if it's
-    nested):
+   * It is now possible to safely compare a :class:`Jet` against a scalar
+     (or literal) without constructing a :class:`Jet` first (even if it's
+     nested):
 
-    .. code-block:: c++
+     .. code-block:: c++
 
-       Jet<Jet<Jet<T, N>, M>, O> x;
-       if (x == 2) { } // equivalent to x.a.a.a == 2
+        Jet<Jet<Jet<T, N>, M>, O> x;
+        if (x == 2) { } // equivalent to x.a.a.a == 2
 
 
-    This enables interaction with various arithmetic functions that
-    expect a scalar like instance, such as ``boost::math::pow<-N>``
-    for reciprocal computation.
+     This enables interaction with various arithmetic functions that
+     expect a scalar like instance, such as ``boost::math::pow<-N>``
+     for reciprocal computation.
 
 #. Add :class:`NumericDiffFirstOrderFunction` (Sameer Agarwal)
 
@@ -95,7 +95,7 @@
    ``FindSuiteSparse.cmake`` (Brent Yi)
 #. Do not define unusable import targets (Sergiu Deitsch)
 #. Fix Ubuntu 18.04 shared library build (Sergiu Deitsch)
-#. Force ``C++`` linker when building the ``C`` API (Sergiu Deitsch)  
+#. Force ``C++`` linker when building the ``C`` API (Sergiu Deitsch)
 #. Modernize the code to be inline with ``C++14`` (Sergiu Deitsch,
    Sameer Agarwal)
 #. Lots of fixes to make Ceres compile out of the box on Windows