@@ -87,9 +87,9 @@ contains
87
87
#:for k1, t1 in IRS_KINDS_TYPES
88
88
89
89
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}$`
91
91
! 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
93
93
! algorithm using `quicksort` for the main body of the sort tree,
94
94
! supplemented by `insertion sort` for the outer branches, but if
95
95
! `quicksort` is converging too slowly the algorithm resorts
@@ -275,9 +275,9 @@ contains
275
275
276
276
#:for sname, signt, signoppt in SIGN_NAME_TYPE
277
277
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(*)`
279
279
! 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
281
281
! algorithm using `quicksort` for the main body of the sort tree,
282
282
! supplemented by `insertion sort` for the outer branches, but if
283
283
! `quicksort` is converging too slowly the algorithm resorts
0 commit comments