diff --git a/docs/topics/installing.rst b/docs/topics/installing.rst
index 81ba630e..cd4c2424 100644
--- a/docs/topics/installing.rst
+++ b/docs/topics/installing.rst
@@ -78,7 +78,7 @@ You can also make your project depend directly on the extra dependencies.
For example, if you want to store cryptographically encrypted events,
then install with the ``crypto`` option. This simply installs
`PyCryptodome `_
-so feel free to make your project directly depend on that package.
+so feel free to make your project depend directly on `pycryptodome`.
Please note, you will need to :ref:`configure your application `
environment to enable encryption.
@@ -89,21 +89,18 @@ environment to enable encryption.
If you want to :ref:`store events with PostgreSQL `, then install with
the ``postgres`` option. This installs `Psycopg v3 `_
-with the `optional C optimization `_ package ``psycopg_c``
-and the connection pool package,
-so feel free to make your project depend on ``psycopg[c,pool]`` instead. The C optimization
-is recommended by the `Psycopg `_ developers for production usage.
-See the :ref:`PostgreSQL persistence module documentation ` for more information
+with its C optimization and connection pool packages, so feel free to make your project depend
+directly on ``psycopg[c,pool]`` instead. The C optimization is recommended by the
+`Psycopg `_ developers for production usage. The pre-built binary
+option ``psycopg[binary]`` is a convenient alternative for development and testing, and for those
+unable to meet the prerequisites needed for building ``psycopg[c]``. See the
+:ref:`PostgreSQL persistence module documentation ` for more information
about storing events in PostgreSQL.
-
::
$ pip install "eventsourcing[postgres]"
-Please note, the `pre-built binary `_ option
-``psycopg[binary]`` is a convenient alternative for development and testing, and for those
-unable to meet the prerequisites needed for building ``psycopg[c]``.
Options can be combined, so that if you want to store encrypted events in PostgreSQL,
then install with both the ``crypto`` and the ``postgres`` options.