@@ -557,7 +557,7 @@ Pure function
557
557
558
558
` p1, p2 ` : Shall be a character string. It is an ` intent(in) ` argument.
559
559
or
560
- ` p ` : Shall be a list of character strings. ` intent(in) ` argument.
560
+ ` p ` : Shall be a list of character strings. It is an ` intent(in) ` argument.
561
561
562
562
### Return values
563
563
@@ -581,9 +581,9 @@ Pure function.
581
581
582
582
### Arguments
583
583
584
- ` lval ` : A character string, ` intent(in) ` .
584
+ ` lval ` : A character string. It is an ` intent(in) ` argument .
585
585
586
- ` rval ` : A character string, ` intent(in) ` .
586
+ ` rval ` : A character string. It is an ` intent(in) ` argument .
587
587
588
588
### Result value
589
589
@@ -615,15 +615,15 @@ Subroutine
615
615
616
616
### Arguments
617
617
618
- ` p ` : A character string containing the path to be split. ` intent(in) `
619
- ` head ` : The first part of the path. ` allocatable, intent(out) `
620
- ` tail ` : The rest part of the path. ` allocatable, intent(out) `
618
+ ` p ` : A character string containing the path to be split. It is an ` intent(in) ` argument.
619
+ ` head ` : The first part of the path. It is an ` allocatable, intent(out) ` argument.
620
+ ` tail ` : The rest part of the path. It is an ` allocatable, intent(out) ` argument.
621
621
622
622
### Behavior
623
623
624
- - If ` p ` is empty, ` head ` is set to ` . ` and ` tail ` is empty
625
- - If ` p ` consists entirely of path-separators. ` head ` is set to the path-separator and ` tail ` is empty
626
- - ` head ` ends in a path-separator if and only if ` p ` appears to be a root directory or child of one
624
+ - If ` p ` is empty, ` head ` is set to ` . ` and ` tail ` is left empty.
625
+ - If ` p ` consists entirely of path-separators, ` head ` is set to the path-separator and ` tail ` is left empty.
626
+ - ` head ` ends with a path-separator if and only if ` p ` appears to be a root directory or child of one.
627
627
628
628
### Return values
629
629
@@ -654,11 +654,11 @@ Function
654
654
655
655
### Arguments
656
656
657
- ` p ` : the path, a character string, ` intent(in) `
657
+ ` p ` : the path, a character string. It is an ` intent(in) ` argument.
658
658
659
659
### Behavior
660
660
661
- - The ` tail ` of ` stdlib_system(module):split_path(interface) ` is exactly what is returned. Same Behavior.
661
+ - The ` tail ` of ` [[ stdlib_system(module):split_path(interface)]] ` is exactly what is returned. Same Behavior.
662
662
663
663
### Return values
664
664
@@ -689,11 +689,11 @@ Function
689
689
690
690
### Arguments
691
691
692
- ` p ` : the path, a character string, ` intent(in) `
692
+ ` p ` : the path, a character string. It is an ` intent(in) ` argument.
693
693
694
694
### Behavior
695
695
696
- - The ` head ` of ` stdlib_system(module):split_path(interface) ` is exactly what is returned. Same Behavior.
696
+ - The ` head ` of ` [[ stdlib_system(module):split_path(interface)]] ` is exactly what is returned. Same Behavior.
697
697
698
698
### Return values
699
699
0 commit comments