diff src/StaticDicts/StaticDicts.jl @ 854:ff9d738c9b21 operator_storage_array_of_table

Fix typos in doc.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Tue, 18 Jan 2022 22:09:55 +0100
parents 76e5682d0e52
children
line wrap: on
line diff
--- a/src/StaticDicts/StaticDicts.jl	Mon Jan 17 08:34:06 2022 +0100
+++ b/src/StaticDicts/StaticDicts.jl	Tue Jan 18 22:09:55 2022 +0100
@@ -10,9 +10,9 @@
 
 The immutable nature means that `StaticDict` can be compared with `===`, in
 constrast to regular `Dict` or `ImmutableDict` which can not. (See
-<https://github.com/JuliaLang/julia/issues/4648> for details) One important
+<https://github.com/JuliaLang/julia/issues/4648> for details.) One important
 aspect of this is that `StaticDict` can be used in a struct while still
-allowing the struct to be comared using the default implementation of `==` for
+allowing the struct to be compared using the default implementation of `==` for
 structs.
 
 Lookups are done by linear search.