Skip to content

Commit d67fa4c

Browse files
Merge pull request #74 from mlakatkou/GS-3314
[update] links article
2 parents 552f1e8 + 8576515 commit d67fa4c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/api/config/links.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ description: "stores the types of links dependencies"
1515
### Example
1616

1717
~~~jsx
18-
var type1 = gantt.config.links.finish_to_start;
18+
const finishToStartType = gantt.config.links.finish_to_start;
1919
~~~
2020

21-
**Default value:**\{ "finish_to_start":"0", "start_to_start":"1", "finish_to_finish":"2", "start_to_finish":"3" \}
21+
**Default value:** `{ "finish_to_start":"0", "start_to_start":"1", "finish_to_finish":"2", "start_to_finish":"3" }`
2222

2323
### Details
2424

2525
- **finish_to_start** - (*string | number*) - the target task can't start before the source task ends (but it may start later).
2626
- **start_to_start** - (*string | number*) - the target task can't start until the source task starts (but it may start later).
27-
- **finish_to_finish** - (*string | number*) - the target task can't end before the source task ends (but it may end later).
27+
- **finish_to_finish** - (*string | number*) - the target task can't end before the source task ends (but it may end later).
2828
- **start_to_finish** - (*string | number*) - the target task can't end before the source task starts (but it may end later).
2929

3030
### Related Guides

0 commit comments

Comments
 (0)