Skip to content

Commit 5927483

Browse files
committed
fix typo
1 parent 36aef03 commit 5927483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/visualization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Add a single point to the Bloch sphere visualization.
211211
function add_points!(b::Bloch, pnt::Vector{<:Real}; meth::Symbol = :s, color = nothing, alpha = 1.0)
212212
return add_points!(b, reshape(pnt, 3, 1); meth, color, alpha)
213213
end
214-
function add_points!(b::Bloch, pnts::Vector{Vector{<:Real}}; meth::Symbol = :s, color = nothing, alpha = 1.0)
214+
function add_points!(b::Bloch, pnts::Vector{<:Vector{<:Real}}; meth::Symbol = :s, color = nothing, alpha = 1.0)
215215
return add_points!(b, Matrix(hcat(pnts...)'); meth, color, alpha)
216216
end
217217

0 commit comments

Comments
 (0)