fix some typos

This commit is contained in:
rvcas
2023-04-07 16:51:18 -04:00
parent d0d482b3cb
commit 1444c9328d
16 changed files with 26 additions and 26 deletions

View File

@@ -1,5 +1,5 @@
/// An opaque `Dict`. The type is opaque because the module maintains some
/// invariant, namely: there's only one occurence of a given key in the dictionnary.
/// invariant, namely: there's only one occurrence of a given key in the dictionary.
pub opaque type Dict<key, value> {
inner: List<(ByteArray, value)>,
}