Skip to content

Commit a9254e1

Browse files
committed
fixed enclosure symbol mismatches
1 parent 0ee5fb1 commit a9254e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stdlib_sorting.fypp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ module stdlib_sorting
423423
!! Version: experimental
424424
!!
425425
!! `${name1}$_ord_sort( array )` sorts the input `ARRAY` of type `${t1}$`
426-
!! using a hybrid sort based on the `'Rust" sort` algorithm found in `slice.rs`
426+
!! using a hybrid sort based on the `"Rust" sort` algorithm found in `slice.rs`
427427
${t1}$, intent(inout) :: array(0:)
428428
${t2}$, intent(out), optional :: work(0:)
429429
logical, intent(in), optional :: reverse
@@ -522,8 +522,8 @@ module stdlib_sorting
522522
!!
523523
!! `${name1}$_sort_index( array, index[, work, iwork, reverse] )` sorts
524524
!! an input `ARRAY` of type `${t1}$`
525-
!! using a hybrid sort based on the `'Rust" sort` algorithm found in `slice.rs`
526-
!! and returns the sorted `ARRAY` and an array `INDEX of indices in the
525+
!! using a hybrid sort based on the `"Rust" sort` algorithm found in `slice.rs`
526+
!! and returns the sorted `ARRAY` and an array `INDEX` of indices in the
527527
!! order that would sort the input `ARRAY` in the desired direction.
528528
${t1}$, intent(inout) :: array(0:)
529529
integer(int_size), intent(out) :: index(0:)

0 commit comments

Comments
 (0)