Skip to content

Commit d35606c

Browse files
authored
Update expressions.rst
1 parent 70d4628 commit d35606c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/coding-guidelines/expressions.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ Expressions
164164
:status: draft
165165

166166
Wrapping behavior call also be achieved using the ``Wrapping<T>`` type as in this compliant solution.
167-
``Wrapping<T>`` type is a ``struct`` found in the ``std::num`` module that explicitly enables two's complement wrapping arithmetic for the inner type ``T`` (which must be an integer or ``usize/isize``).
167+
The ``Wrapping<T>`` type is a ``struct`` found in the ``std::num`` module that explicitly enables two's complement
168+
wrapping arithmetic for the inner type ``T`` (which must be an integer or ``usize/isize``).
168169
The ``Wrapping<T>`` type provides a consistent way to force wrapping behavior in all build modes,
169170
which is useful in specific scenarios like implementing cryptography or hash functions where wrapping arithmetic is the intended behavior.
170171

0 commit comments

Comments
 (0)