Skip to content

Commit 0a73bbc

Browse files
committed
Fixed misspellings
Review-dog caught several misspellings in the comments of the source codes. [ticket: X]
1 parent 62c6781 commit 0a73bbc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/stdlib_sorting.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
!! option. This file may not be copied, modified, or distributed
5151
!! except according to those terms.
5252
!!
53-
!! so the licence for the original`slice.rs` code is compatible with the use
53+
!! so the license for the original`slice.rs` code is compatible with the use
5454
!! of modified versions of the code in the Fortran Standard Library under
5555
!! the MIT license.
5656
!!
@@ -221,7 +221,7 @@ module stdlib_sorting
221221
!!
222222
!! The generic subroutine implementing the `SORT_INDEX` algorithm to
223223
!! return an index array whose elements would sort the input array in the
224-
!! desired direction. It is primarilly intended to be used to sort a
224+
!! desired direction. It is primarily intended to be used to sort a
225225
!! derived type array based on the values of a component of the array.
226226
!! Its use has the syntax:
227227
!!

src/stdlib_sorting_ord_sort.fypp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
!! option. This file may not be copied, modified, or distributed
5050
!! except according to those terms.
5151
!!
52-
!! so the licence for the original`slice.rs` code is compatible with the use
52+
!! so the license for the original`slice.rs` code is compatible with the use
5353
!! of modified versions of the code in the Fortran Standard Library under
5454
!! the MIT license.
5555

@@ -73,7 +73,7 @@ contains
7373
! a hybrid sorting algorithm combining an iterative Merge sort controlled
7474
! by a stack of `RUNS` identified by regions of uniformly decreasing or
7575
! non-decreasing sequences that may be expanded to a minimum run size and
76-
! initialy processed by an insertion sort.
76+
! initially processed by an insertion sort.
7777
!
7878
! Note the Fortran implementation simplifies the logic as it only has to
7979
! deal with Fortran arrays of intrinsic types and not the full generality
@@ -414,7 +414,7 @@ contains
414414
! a hybrid sorting algorithm combining an iterative Merge sort controlled
415415
! by a stack of `RUNS` identified by regions of uniformly decreasing or
416416
! non-decreasing sequences that may be expanded to a minimum run size and
417-
! initialy processed by an insertion sort.
417+
! initially processed by an insertion sort.
418418
!
419419
! Note the Fortran implementation simplifies the logic as it only has to
420420
! deal with Fortran arrays of intrinsic types and not the full generality
@@ -753,7 +753,7 @@ contains
753753
! a hybrid sorting algorithm combining an iterative Merge sort controlled
754754
! by a stack of `RUNS` identified by regions of uniformly decreasing or
755755
! non-decreasing sequences that may be expanded to a minimum run size and
756-
! initialy processed by an insertion sort.
756+
! initially processed by an insertion sort.
757757
!
758758
! Note the Fortran implementation simplifies the logic as it only has to
759759
! deal with Fortran arrays of intrinsic types and not the full generality
@@ -1091,7 +1091,7 @@ contains
10911091
! a hybrid sorting algorithm combining an iterative Merge sort controlled
10921092
! by a stack of `RUNS` identified by regions of uniformly decreasing or
10931093
! non-decreasing sequences that may be expanded to a minimum run size and
1094-
! initialy processed by an insertion sort.
1094+
! initially processed by an insertion sort.
10951095
!
10961096
! Note the Fortran implementation simplifies the logic as it only has to
10971097
! deal with Fortran arrays of intrinsic types and not the full generality

src/stdlib_sorting_sort_index.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
!! option. This file may not be copied, modified, or distributed
5050
!! except according to those terms.
5151
!!
52-
!! so the licence for the original`slice.rs` code is compatible with the use
52+
!! so the license for the original`slice.rs` code is compatible with the use
5353
!! of modified versions of the code in the Fortran Standard Library under
5454
!! the MIT license.
5555

0 commit comments

Comments
 (0)