Skip to content

Commit

Permalink
Fix comments thanks to @vladimir-ch
Browse files Browse the repository at this point in the history
  • Loading branch information
weslleyspereira committed Jul 23, 2021
1 parent a8a03af commit aaeeef2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SRC/classq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
!>
!> If scale * sqrt( sumsq ) > tbig then
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
!> and if scale * sqrt( sumsq ) < tsml then
!> and if 0 < scale * sqrt( sumsq ) < tsml then
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
!> where
!> tbig -- upper threshold for values whose square is representable;
Expand Down
2 changes: 1 addition & 1 deletion SRC/dlassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
!>
!> If scale * sqrt( sumsq ) > tbig then
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
!> and if scale * sqrt( sumsq ) < tsml then
!> and if 0 < scale * sqrt( sumsq ) < tsml then
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
!> where
!> tbig -- upper threshold for values whose square is representable;
Expand Down
2 changes: 1 addition & 1 deletion SRC/slassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
!>
!> If scale * sqrt( sumsq ) > tbig then
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
!> and if scale * sqrt( sumsq ) < tsml then
!> and if 0 < scale * sqrt( sumsq ) < tsml then
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
!> where
!> tbig -- upper threshold for values whose square is representable;
Expand Down
2 changes: 1 addition & 1 deletion SRC/zlassq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
!>
!> If scale * sqrt( sumsq ) > tbig then
!> we require: scale >= sqrt( TINY*EPS ) / sbig on entry,
!> and if scale * sqrt( sumsq ) < tsml then
!> and if 0 < scale * sqrt( sumsq ) < tsml then
!> we require: scale <= sqrt( HUGE ) / ssml on entry,
!> where
!> tbig -- upper threshold for values whose square is representable;
Expand Down

0 comments on commit aaeeef2

Please sign in to comment.