Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredCrean2 committed Jul 2, 2016
1 parent e6c8dd9 commit bc0dc34
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/vec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ function restore{T}(varr::LocalVectorWrite{T})
end

@doc """
Get the LocalArrayRead of a vector. Users must call restore when
Get a readonly version of LocalVector. Users must call restore when
finished with the object.
"""
function LocalVector_readonly{T}(vec::Vec{T})
Expand All @@ -735,10 +735,6 @@ function restore{T}(varr::LocalVectorRead{T})
varr.isfinalized = true
end

@doc """
Typealias for both kinds of LocalArrays
"""

Base.size(varr::LocalVector) = size(varr.a)
# indexing
getindex(varr::LocalVector, i) = getindex(varr.a, i)
Expand Down

0 comments on commit bc0dc34

Please sign in to comment.