Skip to content

Commit aceca0f

Browse files
Remove erroneous docstring and point user to the alternative that works.
Closes #93
1 parent 2a2bc1e commit aceca0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/larray.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,11 +271,11 @@ A = @LVector Float64 (:a, :b, :c, :d)
271271
A .= rand(4)
272272
```
273273
274-
On the other hand, users can also initialize the vector and set its values at the
275-
same time:
274+
To initialize the vector and set its values at the
275+
same time, used [`@LArray`](@ref) instead:
276276
277277
```julia
278-
b = @LVector [1, 2, 3] (:a, :b, :c)
278+
b = @LArray [1, 2, 3] (:a, :b, :c)
279279
```
280280
"""
281281
macro LVector(type, syms)

0 commit comments

Comments
 (0)