@@ -480,31 +480,31 @@ end function repeat_string
480
480
481
481
482
482
! > Convert the character sequence hold by the input string to lower case
483
- elemental function to_lower_string (string ) result(lowered_string )
483
+ elemental function to_lower_string (string ) result(lowercase_string )
484
484
type (string_type), intent (in ) :: string
485
- type (string_type) :: lowered_string
485
+ type (string_type) :: lowercase_string
486
486
487
- lowered_string % raw = to_lower_(maybe(string))
487
+ lowercase_string % raw = to_lower_(maybe(string))
488
488
489
489
end function to_lower_string
490
490
491
491
492
492
! > Convert the character sequence hold by the input string to upper case
493
- elemental function to_upper_string (string ) result(uppered_string )
493
+ elemental function to_upper_string (string ) result(uppercase_string )
494
494
type (string_type), intent (in ) :: string
495
- type (string_type) :: uppered_string
495
+ type (string_type) :: uppercase_string
496
496
497
- uppered_string % raw = to_upper_(maybe(string))
497
+ uppercase_string % raw = to_upper_(maybe(string))
498
498
499
499
end function to_upper_string
500
500
501
501
502
502
! > Convert the character sequence hold by the input string to title case
503
- elemental function to_title_string (string ) result(titled_string )
503
+ elemental function to_title_string (string ) result(titlecase_string )
504
504
type (string_type), intent (in ) :: string
505
- type (string_type) :: titled_string
505
+ type (string_type) :: titlecase_string
506
506
507
- titled_string % raw = to_title_(maybe(string))
507
+ titlecase_string % raw = to_title_(maybe(string))
508
508
509
509
end function to_title_string
510
510
0 commit comments