Skip to content

Commit 7a34995

Browse files
committed
update doctest to qualify vectuptotupvec
1 parent 60c5c88 commit 7a34995

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/util.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ all components of the returned Tuple, also when there were not `missing` in `vec
1313
# Examples
1414
```jldoctest; output=false
1515
vectup = [(1,1.01, "string 1"), (2,2.02, "string 2")]
16-
vectuptotupvec_allowmissing(vectup) == ([1, 2], [1.01, 2.02], ["string 1", "string 2"])
16+
HybridVariationalInference.vectuptotupvec_allowmissing(vectup) ==
17+
([1, 2], [1.01, 2.02], ["string 1", "string 2"])
1718
# output
1819
true
1920
```

0 commit comments

Comments
 (0)