diff --git a/doc/manual/source/installation-and-configuration.rst b/doc/manual/source/installation-and-configuration.rst
index 5117d1e23cd85b8651eca784bd55cce145c5211a..4d22f2bfb481738c29e3f495f681fb344541ef72 100644
--- a/doc/manual/source/installation-and-configuration.rst
+++ b/doc/manual/source/installation-and-configuration.rst
@@ -112,6 +112,7 @@ On macOS
    Several versions of Dynare can coexist (by default in ``/Applications/Dynare``),
    as long as you correctly adjust your path settings (see :ref:`words-warning`).
 
+
 With MATLAB
 ^^^^^^^^^^^
 
@@ -125,6 +126,10 @@ The default installation directory is ``/Applications/Dynare/x.y-arch``.
 It is recommended to install the Xcode Command Line Tools (this is an Apple product)
 and GCC via Homebrew_ (see :ref:`prerequisites-macos`).
 
+To deinstall Dynare, simply delete the folder where you installed the program. The package installer does 
+not put any files anywhere else in the system.
+
+
 With Octave
 ^^^^^^^^^^^
 
diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst
index d65c88d040386f6cc21063a9a78afb2fe86d7154..14728d7249ef4d8e2f02af16beafa40f2a88bfc3 100644
--- a/doc/manual/source/the-model-file.rst
+++ b/doc/manual/source/the-model-file.rst
@@ -959,6 +959,15 @@ The model is declared inside a ``model`` block:
 
         MODEL_EXPRESSION;
 
+    .. warning::
+
+        In Dynare, only equality signs can delineate the left and right-hand side of an 
+        equation. If Dynare encounters an expression like ``a>=b``, this will therefore not 
+        define an inequality constraint. Rather, it is interpreted as the homogenous equation
+        `(a>=b)=0;`, i.e., the Boolean `(a>=b)` must evaluate to 0. Inequality constraints 
+        in Dynare instead need to be set up either via OccBin or as mixed complementarity problems.
+
+
     |br| Inside the model block, Dynare allows the creation of
     *model-local variables*, which constitute a simple way to share a
     common expression between several equations. The syntax consists