Skip to content

Commit 485cba2

Browse files
Adds more fixes to the documentation of CROTG and ZROTG
1 parent 3d260ad commit 485cba2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

BLAS/SRC/crotg.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
!> r = sgn(a)*sqrt(|a|**2 + |b|**2)
2929
!> c = a / r
3030
!> s = b / r
31-
!> the same as in CROTG when |a| > |b|. When |b| >= |a|, the
32-
!> sign of c and s will be different from those computed by CROTG
31+
!> the same as in SROTG when |a| > |b|. When |b| >= |a|, the
32+
!> sign of c and s will be different from those computed by SROTG
3333
!> if the signs of a and b are not the same.
3434
!>
3535
!> \endverbatim

BLAS/SRC/zrotg.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
!> r = sgn(a)*sqrt(|a|**2 + |b|**2)
2929
!> c = a / r
3030
!> s = b / r
31-
!> the same as in ZROTG when |a| > |b|. When |b| >= |a|, the
32-
!> sign of c and s will be different from those computed by ZROTG
31+
!> the same as in DROTG when |a| > |b|. When |b| >= |a|, the
32+
!> sign of c and s will be different from those computed by DROTG
3333
!> if the signs of a and b are not the same.
3434
!>
3535
!> \endverbatim

0 commit comments

Comments
 (0)