Skip to content

Commit 93695e2

Browse files
committed
Fixes a few typos in the tutorial on views
1 parent 597411f commit 93695e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/tutorial/views.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ patterns left of the ``|``. That is:
103103
``Parity (n + n)`` from the ``Even`` constructor definition. So
104104
``(j + j)`` replaces ``k`` on the left side of ``|``, and the
105105
``Even`` constructor appears on the right side. The natural number
106-
``j`` in the refined pattern can be used on the ride side of the
106+
``j`` in the refined pattern can be used on the right side of the
107107
``=`` sign.
108108

109109
- Otherwise, when ``parity k`` evaluates to ``Odd``, the original
110110
argument ``k`` is refined to ``S (j + j)`` according to ``Parity (S
111111
(n + n))`` from the ``Odd`` constructor definition, and ``Odd`` now
112-
appears on the ride side of ``|``, again with the natural number
113-
``j`` used on the ride side of the ``=`` sign.
112+
appears on the right side of ``|``, again with the natural number
113+
``j`` used on the right side of the ``=`` sign.
114114

115115
Note that there is a function in the patterns (``+``) and repeated
116116
occurrences of ``j`` - this is allowed because another argument has

0 commit comments

Comments
 (0)