diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst
index 22e3a4bddec48a8aba99750e81b558ceeeac059f..cabae8cbb2c0c132a1d97b7788c87931a0c64ac8 100644
--- a/doc/manual/source/the-model-file.rst
+++ b/doc/manual/source/the-model-file.rst
@@ -4503,6 +4503,20 @@ The coefficients of the decision rules are stored as follows:
   unfolded :math:`G_3` matrix, they must be multiplied by 3 when
   computing the decision rules.
 
+Higher-order approximation
+--------------------------
+
+Higher-order approximations are simply a generalization of what is done at
+order 3.
+
+The steady state is stored in ``oo_.dr.ys`` and the constant correction is
+stored in ``oo_.dr.g_0``. The coefficient for orders 1, 2, 3, 4… are
+respectively stored in ``oo_.dr.g_0``, ``oo_.dr.g_1``, ``oo_.dr.g_2``,
+``oo_.dr.g_3``, ``oo_.dr.g_4``… The columns of those matrices correspond to
+multidimensional indices of state variables, in such a way that symmetric
+elements are never repeated (for more details, see the description of
+``oo_.dr.g_3`` in the third-order case).
+
 
 .. _estim: