Skip to content

Commit 42b1d40

Browse files
committed
Update the documentation so that FORD renders bullet points correctly
1 parent b19ab4c commit 42b1d40

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/fpm/manifest/profiles.f90

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
!> A profiles table can currently have the following subtables:
44
!> Profile names - any string, if omitted, flags are appended to all matching profiles
55
!> Compiler - any from the following list, omitting it yields an error
6+
!>
67
!> - "gfortran"
78
!> - "ifort"
89
!> - "ifx"
@@ -17,8 +18,10 @@
1718
!> - "crayftn"
1819
!> - "xlf90"
1920
!> - "ftn95"
21+
!>
2022
!> OS - any from the following list, if omitted, the profile is used if and only
2123
!> if there is no profile perfectly matching the current configuration
24+
!>
2225
!> - "linux"
2326
!> - "macos"
2427
!> - "windows"
@@ -280,10 +283,10 @@ subroutine validate_profile_table(profile_name, compiler_name, key_list, table,
280283
end do
281284
else if (.not. os_valid) then
282285
call validate_os_name(key_name, is_valid)
283-
err_message = "Unnexpected key " // key_name // " found in profile table "//profile_name//" "//compiler_name//"."
286+
err_message = "Unexpected key " // key_name // " found in profile table "//profile_name//" "//compiler_name//"."
284287
if (.not. is_valid) call syntax_error(error, err_message)
285288
else
286-
err_message = "Unnexpected key " // key_name // " found in profile table "//profile_name//" "//compiler_name//"."
289+
err_message = "Unexpected key " // key_name // " found in profile table "//profile_name//" "//compiler_name//"."
287290
call syntax_error(error, err_message)
288291
end if
289292
end do
@@ -566,7 +569,7 @@ subroutine new_profiles(profiles, table, error)
566569
end if
567570
end do
568571

569-
profiles_size=profiles_size+size(default_profiles)
572+
profiles_size = profiles_size + size(default_profiles)
570573
allocate(profiles(profiles_size))
571574

572575
do profindex=1, size(default_profiles)

0 commit comments

Comments
 (0)