Skip to content

Commit 2e9feff

Browse files
garrisonandyferris
authored andcommitted
Fix a few typos in README.md (#218)
1 parent f2f6fac commit 2e9feff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@ typeof(reshape([1,2,3,4], Size(2,2))) === SizedArray{(2, 2),Int64,2,1}
124124

125125
## Approach
126126

127-
The package provides an range of different useful built-in `StaticArray` types,
127+
The package provides a range of different useful built-in `StaticArray` types,
128128
which include mutable and immutable arrays based upon tuples, arrays based upon
129129
structs, and wrappers of `Array`. There is a relatively simple interface for
130130
creating your own, custom `StaticArray` types, too.
131131

132132
This package also provides methods for a wide range of `AbstractArray` functions,
133133
specialized for (potentially immutable) `StaticArray`s. Many of Julia's
134134
built-in method definitions inherently assume mutability, and further
135-
performance optimizations may be made when the size of the array is know to the
135+
performance optimizations may be made when the size of the array is known to the
136136
compiler. One example of this is by loop unrolling, which has a substantial
137137
effect on small arrays and tends to automatically triger LLVM's SIMD
138138
optimizations. Another way performance is boosted is by providing specialized

0 commit comments

Comments
 (0)