diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst
index cecb4bd6f0db7448c5ba5d752ae018d24f3b7db9..9ab6caaec5a1fad59c836fe3b33ea8ef4a550fc6 100644
--- a/doc/manual/source/the-model-file.rst
+++ b/doc/manual/source/the-model-file.rst
@@ -466,12 +466,13 @@ quotes. Hence, to declare a variable ``c`` as endogenous in an equation tag,
 you can type ``[endogenous='c']``.
 
 To perform on-the-fly variable declaration in an equation, simply follow the
-symbol name with a vertical line (``|``, pipe character) and either an ``e``, an
-``x``, or a ``p``. For example, to declare a parameter named
-``alphaa`` in the model block, you could write ``alphaa|p`` directly in
-an equation where it appears. Similarly, to declare an endogenous variable
-``c`` in the model block you could write ``c|e``. Note that in-equation
-on-the-fly variable declarations must be made on contemporaneous variables.
+symbol name with a vertical line (``|``, pipe character) and either an ``e``
+(for endogenous), an ``x`` (for exogenous), or a ``p`` (for parameter). For
+example, to declare a parameter named ``alphaa`` in the model block, you could
+write ``alphaa|p`` directly in an equation where it appears. Similarly, to
+declare an endogenous variable ``c`` in the model block you could write
+``c|e``. Note that in-equation on-the-fly variable declarations must be made on
+contemporaneous variables.
 
 On-the-fly variable declarations do not have to appear in the first place where
 this variable is encountered.