Skip to content

Commit 28b55df

Browse files
committed
Document constructor
1 parent 7d7e08c commit 28b55df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Model{typeof(f),(:x, :y),(),(),Tuple{Float64,Float64},Tuple{}}(f, (x = 1.0, y =
2727
julia> Model(f, (x = 1.0, y = 2.0), (x = 42,))
2828
Model{typeof(f),(:x, :y),(:x,),(),Tuple{Float64,Float64},Tuple{Int64}}(f, (x = 1.0, y = 2.0), (x = 42,))
2929
30-
julia> Model{(:y,)}(f, (x = 1.0, y = 2.0), (x = 42,))
30+
julia> Model{(:y,)}(f, (x = 1.0, y = 2.0), (x = 42,)) # with special definition of missings
3131
Model{typeof(f),(:x, :y),(:x,),(:y,),Tuple{Float64,Float64},Tuple{Int64}}(f, (x = 1.0, y = 2.0), (x = 42,))
3232
```
3333
"""

0 commit comments

Comments
 (0)