Skip to content

Commit 4bca750

Browse files
committed
fix: link interface and document title
1 parent b673f51 commit 4bca750

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/specs/fftpack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ Pure subroutine.
10911091

10921092
#### Syntax
10931093

1094-
`call [[fftpack(module):dcosqf(interface)]](n, x, wsave)`
1094+
`call [[fftpack(module):dcosqb(interface)]](n, x, wsave)`
10951095

10961096
#### Arguments
10971097

src/fftpack.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ end function irfft_rk
248248
!> Version: experimental
249249
!>
250250
!> Dsicrete cosine transforms.
251-
!> ([Specification](../page/specs/fftpack.html#dct))
251+
!> ([Specification](../page/specs/fftpack.html#simplified-dct-of-types-1-2-3-dct))
252252
interface dct
253253
pure module function dct_rk(x, n, type) result(result)
254254
real(kind=rk), intent(in) :: x(:)
@@ -261,7 +261,7 @@ end function dct_rk
261261
!> Version: experimental
262262
!>
263263
!> Inverse discrete cosine transforms.
264-
!> ([Specification](../page/specs/fftpack.html#idct))
264+
!> ([Specification](../page/specs/fftpack.html#simplified-inverse-dct-of-types-1-2-3-idct))
265265
interface idct
266266
pure module function idct_rk(x, n, type) result(result)
267267
real(kind=rk), intent(in) :: x(:)

0 commit comments

Comments
 (0)