Skip to content

Commit 5d4180c

Browse files
authored
Merge pull request Reference-LAPACK#626 from Reference-LAPACK/typo_in__rotg_from_jim
fix a typo, thanks to Jim Demmel for letting me know
2 parents 38f3eee + 70b8ee2 commit 5d4180c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BLAS/SRC/crotg.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
! CROTG constructs a plane rotation
1212
! [ c s ] [ a ] = [ r ]
1313
! [ -conjg(s) c ] [ b ] [ 0 ]
14-
! where c is real, s ic complex, and c**2 + conjg(s)*s = 1.
14+
! where c is real, s is complex, and c**2 + conjg(s)*s = 1.
1515
!
1616
!> \par Purpose:
1717
! =============

BLAS/SRC/zrotg.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
! ZROTG constructs a plane rotation
1212
! [ c s ] [ a ] = [ r ]
1313
! [ -conjg(s) c ] [ b ] [ 0 ]
14-
! where c is real, s ic complex, and c**2 + conjg(s)*s = 1.
14+
! where c is real, s is complex, and c**2 + conjg(s)*s = 1.
1515
!
1616
!> \par Purpose:
1717
! =============

0 commit comments

Comments
 (0)