Skip to content

Commit ac80d30

Browse files
authored
Fix some FORD links (#556)
1 parent d14fca8 commit ac80d30

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/specs/stdlib_stringlist_type.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Experimental
4949

5050
#### Syntax
5151

52-
For fidx: `res = [[stdlib_stringlist_type(module):fidx()]] (idx)`.
53-
For bidx: `res = [[stdlib_stringlist_type(module):bidx()]] (idx)`.
52+
For fidx: `res = [[stdlib_stringlist_type(module):fidx(interface)]] (idx)`
53+
For bidx: `res = [[stdlib_stringlist_type(module):bidx(interface)]] (idx)`
5454

5555
#### Status
5656

@@ -149,7 +149,7 @@ Inserts the string `string` _AT_ the index `idx`, so that the newly added elemen
149149

150150
#### Syntax
151151

152-
`call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module):insert_at(generic)]] (idx, string)`
152+
`call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type):insert_at(bound)]] (idx, string)`
153153

154154
#### Status
155155

@@ -205,7 +205,7 @@ Returns the string present currently at the index `idx` in a stringlist. If inde
205205

206206
#### Syntax
207207

208-
`res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module):get(generic)]] (idx)`
208+
`res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type):get(bound)]] (idx)`
209209

210210
#### Status
211211

@@ -267,7 +267,7 @@ Returns the number of elements present currently in the stringlist.
267267

268268
#### Syntax
269269

270-
`res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module):len()]] ()`
270+
`res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type):len(bound)]] ()`
271271

272272
#### Status
273273

@@ -319,7 +319,7 @@ Removes all elements from a stringlist.
319319

320320
#### Syntax
321321

322-
`call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module):clear()]] ()`
322+
`call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type):clear(bound)]] ()`
323323

324324
#### Status
325325

@@ -529,7 +529,7 @@ a [[stdlib_stringlist_type(module):stringlist_type(type)]].
529529

530530
#### Result value
531531

532-
The result is an instance of `stringlist_type`.
532+
The result is an instance of `[[stdlib_stringlist_type(module):stringlist_type(type)]]`.
533533

534534
#### Example
535535

@@ -561,4 +561,4 @@ program demo_concatenate_operator
561561
! first_stringlist <-- {"Element No. one", "#1", "#2", "Element No. one", "Element No. three", "Element No. four"}
562562
563563
end program demo_concatenate_operator
564-
```
564+
```

0 commit comments

Comments
 (0)