From def25a1fd360bbd63ce232acecf59afcdee235cf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Mon, 13 Feb 2023 14:38:41 -0500
Subject: [PATCH] Manual: explicitly say to which type the suffixes |e, |x and
 |p correspond

[skip ci]
---
 doc/manual/source/the-model-file.rst | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst
index fe5071476d..4958fd90e3 100644
--- a/doc/manual/source/the-model-file.rst
+++ b/doc/manual/source/the-model-file.rst
@@ -493,12 +493,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.
-- 
GitLab