Skip to content

Commit 242e3c7

Browse files
committed
fixed hyperlinks
1 parent df89af7 commit 242e3c7

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

docs/writing-reactors/time-and-timers.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515

1616
A key property of Lingua Franca is **logical time**. All events occur at an instant in logical time. By default, the runtime system does its best to align logical time with **physical time**, which is some measurement of time on the execution platform. The **lag** is defined to be physical time minus logical time, and the goal of the runtime system is maintain a small non-negative lag.
1717

18-
The **lag** is allowed to go negative only if the [`fast` target property](<../introduction.md#fast>) or the [`--fast`](<../introduction.md#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
18+
The **lag** is allowed to go negative only if the [`fast`](<../reference/target-declaration#fast>) target property or the [`--fast`](<../reference/target-declaration#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
1919

2020
<ShowOnly c cpp rs>
2121

@@ -93,8 +93,8 @@ import TS_Timer from '../assets/code/ts/src/Timer.lf';
9393
This specifies a timer named `t` that will first trigger at the start of execution and then repeatedly trigger at intervals of one second. Notice that the time units can be left off if the value is zero.
9494

9595
This target provides a built-in function for retrieving the logical time at which the reaction is invoked,
96-
<ShowOnly c inline>`get_logical_time()`</ShowOnly>
97-
<ShowOnly cpp inline>`FIXME`</ShowOnly>
96+
<ShowOnly c inline>`lf_time_logical()`</ShowOnly>
97+
<ShowOnly cpp inline>`get_logical_time()`</ShowOnly>
9898
<ShowOnly py inline>`lf.time.logical()`</ShowOnly>
9999
<ShowOnly ts inline>`util.getCurrentLogicalTime()`</ShowOnly>
100100
<ShowOnly rs inline>`get_logical_time()`</ShowOnly>

versioned_docs/version-0.5.0/writing-reactors/time-and-timers.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515

1616
A key property of Lingua Franca is **logical time**. All events occur at an instant in logical time. By default, the runtime system does its best to align logical time with **physical time**, which is some measurement of time on the execution platform. The **lag** is defined to be physical time minus logical time, and the goal of the runtime system is maintain a small non-negative lag.
1717

18-
The **lag** is allowed to go negative only if the [`fast` target property](<../introduction.md#fast>) or the [`--fast`](<../introduction.md#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
18+
The **lag** is allowed to go negative only if the [`fast`](<../reference/target-declaration#fast>) target property or the [`--fast`](<../reference/target-declaration#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
1919

2020
<ShowOnly c cpp rs>
2121

@@ -93,8 +93,8 @@ import TS_Timer from '../assets/code/ts/src/Timer.lf';
9393
This specifies a timer named `t` that will first trigger at the start of execution and then repeatedly trigger at intervals of one second. Notice that the time units can be left off if the value is zero.
9494

9595
This target provides a built-in function for retrieving the logical time at which the reaction is invoked,
96-
<ShowOnly c inline>`get_logical_time()`</ShowOnly>
97-
<ShowOnly cpp inline>`FIXME`</ShowOnly>
96+
<ShowOnly c inline>`lf_time_logical()`</ShowOnly>
97+
<ShowOnly cpp inline>`get_logical_time()`</ShowOnly>
9898
<ShowOnly py inline>`lf.time.logical()`</ShowOnly>
9999
<ShowOnly ts inline>`util.getCurrentLogicalTime()`</ShowOnly>
100100
<ShowOnly rs inline>`get_logical_time()`</ShowOnly>

versioned_docs/version-0.6.0/writing-reactors/time-and-timers.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515

1616
A key property of Lingua Franca is **logical time**. All events occur at an instant in logical time. By default, the runtime system does its best to align logical time with **physical time**, which is some measurement of time on the execution platform. The **lag** is defined to be physical time minus logical time, and the goal of the runtime system is maintain a small non-negative lag.
1717

18-
The **lag** is allowed to go negative only if the [`fast` target property](<../introduction.md#fast>) or the [`--fast`](<../introduction.md#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
18+
The **lag** is allowed to go negative only if the [`fast`](<../reference/target-declaration#fast>) target property or the [`--fast`](<../reference/target-declaration#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
1919

2020
<ShowOnly c cpp rs>
2121

@@ -93,8 +93,8 @@ import TS_Timer from '../assets/code/ts/src/Timer.lf';
9393
This specifies a timer named `t` that will first trigger at the start of execution and then repeatedly trigger at intervals of one second. Notice that the time units can be left off if the value is zero.
9494

9595
This target provides a built-in function for retrieving the logical time at which the reaction is invoked,
96-
<ShowOnly c inline>`get_logical_time()`</ShowOnly>
97-
<ShowOnly cpp inline>`FIXME`</ShowOnly>
96+
<ShowOnly c inline>`lf_time_logical()`</ShowOnly>
97+
<ShowOnly cpp inline>`get_logical_time()`</ShowOnly>
9898
<ShowOnly py inline>`lf.time.logical()`</ShowOnly>
9999
<ShowOnly ts inline>`util.getCurrentLogicalTime()`</ShowOnly>
100100
<ShowOnly rs inline>`get_logical_time()`</ShowOnly>

versioned_docs/version-0.7.0/writing-reactors/time-and-timers.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515

1616
A key property of Lingua Franca is **logical time**. All events occur at an instant in logical time. By default, the runtime system does its best to align logical time with **physical time**, which is some measurement of time on the execution platform. The **lag** is defined to be physical time minus logical time, and the goal of the runtime system is maintain a small non-negative lag.
1717

18-
The **lag** is allowed to go negative only if the [`fast` target property](<../introduction.md#fast>) or the [`--fast`](<../introduction.md#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
18+
The **lag** is alThe **lag** is allowed to go negative only if the [`fast`](<../reference/target-declaration#fast>) target property or the [`--fast`](<../reference/target-declaration#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
1919

2020
<ShowOnly c cpp rs>
2121

versioned_docs/version-0.8.0/writing-reactors/time-and-timers.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515

1616
A key property of Lingua Franca is **logical time**. All events occur at an instant in logical time. By default, the runtime system does its best to align logical time with **physical time**, which is some measurement of time on the execution platform. The **lag** is defined to be physical time minus logical time, and the goal of the runtime system is maintain a small non-negative lag.
1717

18-
The **lag** is allowed to go negative only if the [`fast` target property](<../introduction.md#fast>) or the [`--fast`](<../introduction.md#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
18+
The **lag** is allowed to go negative only if the [`fast`](<../reference/target-declaration#fast>) target property or the [`--fast`](<../reference/target-declaration#command-line-arguments>) command-line argument is set to `true`. In that case, the program will execute as fast as possible with no regard to physical time.
1919

2020
<ShowOnly c cpp rs>
2121

0 commit comments

Comments
 (0)