Skip to content

Commit 720a0cd

Browse files
committed
fixed typo
1 parent de03c1d commit 720a0cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/stdlib_sorting_sort.fypp

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ contains
8787
#:for k1, t1 in IRS_KINDS_TYPES
8888

8989
pure subroutine ${k1}$_${sname}$_sort( array )
90-
! `${k1}$_${name}$_sort( array )` sorts the input `ARRAY` of type `${t1}$`
90+
! `${k1}$_${sname}$_sort( array )` sorts the input `ARRAY` of type `${t1}$`
9191
! using a hybrid sort based on the `introsort` of David Musser. As with
92-
! `introsort`, `${k1}$_${name}$_sort( array )` is an unstable hybrid comparison
92+
! `introsort`, `${k1}$_${sname}$_sort( array )` is an unstable hybrid comparison
9393
! algorithm using `quicksort` for the main body of the sort tree,
9494
! supplemented by `insertion sort` for the outer branches, but if
9595
! `quicksort` is converging too slowly the algorithm resorts
@@ -275,9 +275,9 @@ contains
275275

276276
#:for sname, signt, signoppt in SIGN_NAME_TYPE
277277
pure subroutine char_${sname}$_sort( array )
278-
! `char_${name}$_sort( array )` sorts the input `ARRAY` of type `CHARACTER(*)`
278+
! `char_${sname}$_sort( array )` sorts the input `ARRAY` of type `CHARACTER(*)`
279279
! using a hybrid sort based on the `introsort` of David Musser. As with
280-
! `introsort`, `char_${name}$_sort( array )` is an unstable hybrid comparison
280+
! `introsort`, `char_${sname}$_sort( array )` is an unstable hybrid comparison
281281
! algorithm using `quicksort` for the main body of the sort tree,
282282
! supplemented by `insertion sort` for the outer branches, but if
283283
! `quicksort` is converging too slowly the algorithm resorts

0 commit comments

Comments
 (0)