Skip to content

Commit 19505da

Browse files
committed
fix(program_units_and_procedures): drop explicit anchor
In this test, the explicit anchor `modules` (lower case) is dropped. Does this yield a functional link across the files? Signed-off-by: Norwid Behrnd <[email protected]>
1 parent cbc7ed7 commit 19505da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/learn/f95_features/program_units_and_procedures.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ names of implied-DO variables have a scope of the statement that
7777
contains them.
7878

7979

80-
## Modules {#modules}
80+
## Modules
8181

8282
Modules are used to package
8383

@@ -201,7 +201,7 @@ Also, `inout` is possible: here the actual argument must be a variable
201201
Arguments may be optional:
202202

203203
```f90
204-
subroutine mincon(n, f, x, upper, lower, equalities, inequalities, &
204+
subroutine mincon(n, f, x, upper, lower, equalities, inequalities, &
205205
convex, xstart)
206206
real, optional, dimension :: upper, lower
207207
:

0 commit comments

Comments
 (0)