diff --git a/docs/users_guide/exts/linear_types.rst b/docs/users_guide/exts/linear_types.rst index 7fd3ef01f5c464f76a047857f33663cf16548cee..6c69b618d58d05bf1d8bac1bd9448768aa568752 100644 --- a/docs/users_guide/exts/linear_types.rst +++ b/docs/users_guide/exts/linear_types.rst @@ -28,8 +28,9 @@ once*, then its argument is consumed *exactly once*. Intuitively, it means that in every branch of the definition of ``f``, its argument ``x`` must be used exactly once. Which can be done by -* Returning ``x`` unmodified -* Passing ``x`` to a *linear* function +* Returning ``x`` unmodified. +* Passing ``x`` to a *linear* function and using the result exactly once + in the same fashion. * Pattern-matching on ``x`` and using each argument exactly once in the same fashion. * Calling it as a function and using the result exactly once in the same