Skip to content

Commit

Permalink
Fix some FORD links (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdp1 authored Nov 6, 2021
1 parent d14fca8 commit ac80d30
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/specs/stdlib_stringlist_type.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Experimental

#### Syntax

For fidx: `res = [[stdlib_stringlist_type(module):fidx()]] (idx)`.
For bidx: `res = [[stdlib_stringlist_type(module):bidx()]] (idx)`.
For fidx: `res = [[stdlib_stringlist_type(module):fidx(interface)]] (idx)`
For bidx: `res = [[stdlib_stringlist_type(module):bidx(interface)]] (idx)`

#### Status

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

#### Syntax

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

#### Status

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

#### Syntax

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

#### Status

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

#### Syntax

`res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module):len()]] ()`
`res = [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type):len(bound)]] ()`

#### Status

Expand Down Expand Up @@ -319,7 +319,7 @@ Removes all elements from a stringlist.

#### Syntax

`call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stdlib_stringlist_type(module):clear()]] ()`
`call [[stdlib_stringlist_type(module):stringlist_type(type)]]%[[stringlist_type(type):clear(bound)]] ()`

#### Status

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

#### Result value

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

#### Example

Expand Down Expand Up @@ -561,4 +561,4 @@ program demo_concatenate_operator
! first_stringlist <-- {"Element No. one", "#1", "#2", "Element No. one", "Element No. three", "Element No. four"}
end program demo_concatenate_operator
```
```

0 comments on commit ac80d30

Please sign in to comment.