diff options
author | John S. Urban <urbanjost@comcast.net> | 2021-03-07 20:20:34 -0500 |
---|---|---|
committer | John S. Urban <urbanjost@comcast.net> | 2021-03-07 20:20:34 -0500 |
commit | 58d64b5ed3bae5840d0592e3542ecbaa0244e532 (patch) | |
tree | bfa7c927edecd6aaf7c7e6a49bc355ef8d4648cb | |
parent | 39745f3e5cca0a069b7750581d50faf3311072c8 (diff) | |
download | fpm-58d64b5ed3bae5840d0592e3542ecbaa0244e532.tar.gz fpm-58d64b5ed3bae5840d0592e3542ecbaa0244e532.zip |
errata
-rw-r--r-- | fpm/src/fpm_strings.f90 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fpm/src/fpm_strings.f90 b/fpm/src/fpm_strings.f90 index 8acd143..9066d67 100644 --- a/fpm/src/fpm_strings.f90 +++ b/fpm/src/fpm_strings.f90 @@ -18,11 +18,10 @@ !! - **OPERATOR(.IN.)** Check if array of **TYPE(STRING_T)** matches a particular **CHARACTER** string !! - [[GLOB]] function compares text strings, one of which can have wildcards ('*' or '?'). !!### Miscellaneous -!! - [[LEN_TRIM]] Determine total trimmed length of **string_t** array -!! - [[FNV_1A]] Hash a **CHARACTER**(*) string of default kind or a **TYPE(STRING_T)** array +!! - [[LEN_TRIM]] Determine total trimmed length of **STRING_T** array +!! - [[FNV_1A]] Hash a **CHARACTER(*)** string of default kind or a **TYPE(STRING_T)** array !! - [[REPLACE]] Returns string with characters in charset replaced with target_char. !! - [[RESIZE]] increase the size of a **TYPE(STRING_T)** array by N elements -!! adding separators and suffix and prefix strings !! !!@note `If compiled with **OpenMP**, targets will be build in parallel where possible`. !! |