Skip to content

Commit

Permalink
fixed typo in NEWS and test in givens.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Jun 19, 2018
1 parent 274d597 commit 4282c4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ Deprecated or removed

* The functions `eigs` and `svds` have been moved to the `Arpack.jl` package ([#27616]).

* `vecdot` and `norm` are deprecated in favor of `dot` and `norm`, respectively ([#27401]).
* `vecdot` and `vecnorm` are deprecated in favor of `dot` and `norm`, respectively ([#27401]).

Command-line option changes
---------------------------
Expand Down
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/test/givens.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ using LinearAlgebra: rmul!, lmul!
@test_throws DimensionMismatch lmul!(G, A)
@test_throws DimensionMismatch rmul!(A, adjoint(G))
@test abs.(A) abs.(hessenberg(Ac).H)
@test norm(R*Matrix{elty}(I, 10, 10)) one(elty)
@test opnorm(R*Matrix{elty}(I, 10, 10)) one(elty)

I10 = Matrix{elty}(I, 10, 10)
G, _ = givens(one(elty),zero(elty),9,10)
Expand Down

0 comments on commit 4282c4f

Please sign in to comment.