@@ -69,23 +69,22 @@ and therefore does not meet the semantic requirements of *Sortable*.
6969
7070The following table provides guidance for the types of parameters used in pseudo-signatures.
7171
72- ================ ================================ =============================
73- Pseudo-signature General semantics Alternative real parameters
74- parameter
75- ================ ================================ =============================
76- ``const T& x `` The function is not supposed ``T x ``
77- to modify the argument. ``auto& x ``
78- ``auto&& x ``, forwarding reference
79-
80- ``T& x`` The argument is a lvalue. ``const T& x``
81- The function can or is ``T x ``
82- supposed to modify the argument. ``auto& x ``
83- ``auto&& x ``, forwarding reference
84-
85- ``T&& x`` The argument is a rvalue. The - ``const T& x``
86- function can use the argument - ``T x ``
87- as a source in move operations. - ``auto&& x ``, forwarding reference
88- ================ ================================ =============================
72+ ========================== ================================ =============================
73+ Pseudo-signature parameter General semantics Alternative real parameters
74+ ========================== ================================ =============================
75+ ``const T& x `` The function is not supposed - ``T x ``
76+ to modify the argument. - ``auto& x ``
77+ - ``auto&& x ``, forwarding reference
78+
79+ ``T& x`` The argument is a lvalue. - ``const T& x``
80+ The function can or is - ``T x ``
81+ supposed to modify the argument. - ``auto& x ``
82+ - ``auto&& x ``, forwarding reference
83+
84+ ``T&& x`` The argument is a rvalue. The - ``const T& x``
85+ function can use the argument - ``T x ``
86+ as a source in move operations. - ``auto&& x ``, forwarding reference
87+ ========================== ================================ =============================
8988
9089Algorithms
9190----------
0 commit comments