Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some FORD links #556

Merged
merged 1 commit into from
Nov 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
```
```