Skip to content

Commit 73a7ea6

Browse files
oxinaboxChrisRackauckas
authored andcommitted
Remove irrelevant mention of StaticArrays macros
I think the example was updated to not use macros without updating the text
1 parent 0aeb81c commit 73a7ea6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/src/tutorials/code_optimization.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ up) is determined at runtime. But there are structures in Julia which are stack-
106106
`struct`s for example are stack-allocated “value-type”s. `Tuple`s are a stack-allocated
107107
collection. The most useful data structure for NonlinearSolve though is the `StaticArray`
108108
from the package [StaticArrays.jl](https://github.com/JuliaArrays/StaticArrays.jl). These
109-
arrays have their length determined at compile-time. They are created using macros attached
110-
to normal array expressions, for example:
109+
arrays have their length determined at compile-time. For example:
111110

112111
```@example small_opt
113112
import StaticArrays

0 commit comments

Comments
 (0)