Skip to content

Commit 17d2f8a

Browse files
committed
Fix some missing internal crosslinks
1 parent 6513491 commit 17d2f8a

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

docs/general/application.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ The project that is currently loaded. See [Project object](project.md).
329329

330330
#### Type
331331

332-
Project object; read-only.
332+
[Project object](./project.md); read-only.
333333

334334
---
335335

@@ -612,7 +612,7 @@ None.
612612

613613
#### Returns
614614

615-
A new Project object, or `null` if no new project is created.
615+
A new [Project object](./project.md), or `null` if no new project is created.
616616

617617
#### Example
618618

@@ -642,7 +642,7 @@ Opens a project.
642642

643643
#### Returns
644644

645-
A new Project object for the specified project, or `null` if the user cancels the Open dialog box.
645+
A new [Project object](./project.md) for the specified project, or `null` if the user cancels the Open dialog box.
646646

647647
#### Example
648648

@@ -677,7 +677,7 @@ Opens a project faster than `app.open()` by skipping some checks.
677677

678678
#### Returns
679679

680-
A new Project object for the specified project.
680+
A new [Project object](./project.md) for the specified project.
681681

682682
#### Example
683683

docs/item/folderitem.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@ if (!(secondItem instanceof FolderItem)) {
3131

3232
#### Description
3333

34-
An ItemCollection object containing Item object that represents the top-level contents of this folder.
34+
An [ItemCollection object](../item/itemcollection.md) containing Item object that represents the top-level contents of this folder.
3535

36-
Unlike the ItemCollection in the Project object, this collection contains only the top-level items in the folder. The top-level within the folder is not the same as top-level within the project. Only those items that are top-level in the root folder are also top-level in the Project.
36+
Unlike the ItemCollection in the [Project object](../general/project.md), this collection contains only the top-level items in the folder. The top-level within the folder is not the same as top-level within the project.
37+
38+
Only those items that are top-level in the root folder are also top-level in the Project.
3739

3840
#### Type
3941

40-
ItemCollection object; read-only.
42+
[ItemCollection object](../item/itemcollection.md); read-only.
4143

4244
---
4345

docs/item/itemcollection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#### Description
66

7-
The ItemCollection object represents a collection of items. The ItemCollection belonging to a Project object contains all the Item objects for items in the project. The ItemCollection belonging to a FolderItem object contains all the Item objects for items in that folder.
7+
The ItemCollection object represents a collection of items. The ItemCollection belonging to a [Project object](../general/project.md) contains all the Item objects for items in the project. The ItemCollection belonging to a FolderItem object contains all the Item objects for items in that folder.
88

99
!!! info
1010
ItemCollection is a subclass of [Collection object](../other/collection.md). All methods and attributes of Collection, in addition to those listed below, are available when working with ItemCollection.

0 commit comments

Comments
 (0)