diff --git a/docs/alpha/michelson.rst b/docs/alpha/michelson.rst
index 6d53552a90ec8c90c7f63a8a3a7a5285f360a26c..252eebc12bf20d7197b8d5049bfd385c43924d2b 100644
--- a/docs/alpha/michelson.rst
+++ b/docs/alpha/michelson.rst
@@ -802,55 +802,14 @@ A detailed description of the following instructions can be found in the `intera
Special operations
~~~~~~~~~~~~~~~~~~
-- ``NOW``: Push the minimal injection time for the current block,
- namely the block whose validation triggered this execution. The
- minimal injection time is 60 seconds after the timestamp of the
- predecessor block. This value does not change during the execution
- of the contract.
-
-::
-
- :: 'S -> timestamp : 'S
-
-- ``CHAIN_ID``: Push the chain identifier.
-
-::
-
- :: 'S -> chain_id : 'S
-
-- ``COMPARE``: Chain identifier comparison
-
-::
-
- :: chain_id : chain_id : 'S -> int : 'S
-
- > COMPARE / x : y : S => -1 : S
- iff x < y
- > COMPARE / x : y : S => 0 : S
- iff x = y
- > COMPARE / x : y : S => 1 : S
- iff x > y
-
-- ``LEVEL``: Push the level of the current transaction's block.
-
-::
-
- :: 'S -> nat : 'S
-
-- ``TOTAL_VOTING_POWER``: Return the total voting power of all contracts. The total
- voting power coincides with the sum of the voting power of every contract in
- the voting listings (as returned by ``VOTING_POWER``). The voting listings is calculated at the beginning of every
- voting period.
-
-::
-
- :: 'S -> nat : 'S
-
-- ``MIN_BLOCK_TIME``: Push the current minimal block time in seconds.
-
-::
+A detailed description of the following instructions can be found in the `interactive Michelson reference manual `__.
- :: 'S -> nat : 'S
+- ``NOW``: Push the estimated injection time for the current block (`documentation `__).
+- ``CHAIN_ID``: Push the chain identifier (`documentation `__).
+- ``COMPARE``: Chain identifier comparison (`documentation `__).
+- ``LEVEL``: Push the level of the current transaction's block (`documentation `__).
+- ``TOTAL_VOTING_POWER``: Push the total voting power of all contracts (`documentation `__).
+- ``MIN_BLOCK_TIME``: Push the current minimal block time in seconds (`documentation `__).
Operations on bytes
~~~~~~~~~~~~~~~~~~~