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 15, 2018
1 parent cd43896 commit eab4ff7
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 @@ -1276,7 +1276,7 @@ Deprecated or removed

* `atan2` is now a 2-argument method of `atan` ([#27248]).

* `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 eab4ff7

Please sign in to comment.