Skip to content

Commit 6050923

Browse files
authored
Style: Remove tabs from code base (#350)
1 parent b522bbb commit 6050923

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/stdlib_quadrature.fypp

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ module stdlib_quadrature
1515

1616

1717
interface trapz
18-
!! version: experimental
19-
!!
18+
!! version: experimental
19+
!!
2020
!! Integrates sampled values using trapezoidal rule
2121
!! ([Specification](../page/specs/stdlib_quadrature.html#description))
2222
#:for k1, t1 in REAL_KINDS_TYPES
2323
pure module function trapz_dx_${k1}$(y, dx) result(integral)
2424
${t1}$, dimension(:), intent(in) :: y
2525
${t1}$, intent(in) :: dx
2626
${t1}$ :: integral
27-
end function trapz_dx_${k1}$
27+
end function trapz_dx_${k1}$
2828
#:endfor
2929
#:for k1, t1 in REAL_KINDS_TYPES
3030
module function trapz_x_${k1}$(y, x) result(integral)
@@ -37,8 +37,8 @@ module stdlib_quadrature
3737

3838

3939
interface trapz_weights
40-
!! version: experimental
41-
!!
40+
!! version: experimental
41+
!!
4242
!! Integrates sampled values using trapezoidal rule weights for given abscissas
4343
!! ([Specification](../page/specs/stdlib_quadrature.html#description_1))
4444
#:for k1, t1 in REAL_KINDS_TYPES
@@ -51,8 +51,8 @@ module stdlib_quadrature
5151

5252

5353
interface simps
54-
!! version: experimental
55-
!!
54+
!! version: experimental
55+
!!
5656
!! Integrates sampled values using Simpson's rule
5757
!! ([Specification](../page/specs/stdlib_quadrature.html#description_3))
5858
! "recursive" is an implementation detail
@@ -76,8 +76,8 @@ module stdlib_quadrature
7676

7777

7878
interface simps_weights
79-
!! version: experimental
80-
!!
79+
!! version: experimental
80+
!!
8181
!! Integrates sampled values using trapezoidal rule weights for given abscissas
8282
!! ([Specification](../page/specs/stdlib_quadrature.html#description_3))
8383
#:for k1, t1 in REAL_KINDS_TYPES

0 commit comments

Comments
 (0)