Skip to content

Commit 7f97281

Browse files
committed
fix(data_transfer.md): edit referer
Signed-off-by: Norwid Behrnd <[email protected]>
1 parent 38039b2 commit 7f97281

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

source/learn/f95_features/data_transfer.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
## Formatted input/output
44

55
These examples illustrate various forms of I/O lists with some simple
6-
formats (see [below](edit_descriptors)):
6+
formats (see
7+
[Edit descriptors](edit_descriptors)
8+
below):
79

810
```f90
911
integer :: i
@@ -59,7 +61,8 @@ print form, q
5961
```
6062

6163
or as an asterisk this is a type of I/O known as *list-directed* I/O
62-
(see [below](list-directed-i/o),
64+
(see
65+
[below](list-directed-i-o)),
6366
in which the format is defined by the computer system:
6467

6568
```f90
@@ -223,10 +226,10 @@ It is possible to specify that an edit descriptor be repeated a
223226
specified number of times, using a *repeat count*: `10f12.3`
224227

225228
The slash edit descriptor (see
226-
[below](control-edit-descriptors))
227-
may have a repeat count, and a repeat count can
228-
also apply to a group of edit descriptors, enclosed in parentheses, with
229-
nesting:
229+
[Control edit descriptors](control-edit-descriptors)
230+
below) may have a great count, and
231+
a repeat count can also apply to a group of edit descriptors,
232+
enclosed in parentheses, with nesting:
230233

231234
```f90
232235
print "(2(2i5,2f8.2))", i(1),i(2),a(1),a(2), i(3),i(4),a(3),a(4)

0 commit comments

Comments
 (0)