Skip to content

Commit

Permalink
Fix typo: "key word" -> "keyword"
Browse files Browse the repository at this point in the history
  • Loading branch information
QnJ1c2kNCg authored and lpil committed Aug 19, 2024
1 parent af39f91 commit c6328f6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<p>
It is possible to pattern match on a record, this allows for the extraction
It is possible to pattern match on a record, this allows for the extraction
of multiple field values from a record into distinct variables, similar to matching on a tuple or a list.
</p>
<p>
The let key word can only match on single variant custom types. For types with more variants
The <code>let</code> keyword can only match on single variant custom types. For types with more variants
a case expression must be used.
</p>
<p>
It is possible to use underscore <code>_</code> or the spread syntax <code>..</code> to
It is possible to use underscore <code>_</code> or the spread syntax <code>..</code> to
discard fields that are not required.
</p>
</p>

0 comments on commit c6328f6

Please sign in to comment.