Skip to content

Commit cf8f8ab

Browse files
authored
docs: fix dead links for App (#18332)
1 parent 8ade7d0 commit cf8f8ab

35 files changed

+40
-40
lines changed

docs/source-app/core_api/lightning_app/communication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Communication between Lightning Components
88

99
**Level:** Intermediate
1010

11-
**Prerequisite**: Read the `Communication in Lightning Apps article <../../access_app_state.html>`_.
11+
**Prerequisite**: Read the :doc:`Communication in Lightning Apps article <../../../workflows/access_app_state>`.
1212

1313
----
1414

docs/source-app/core_api/lightning_work/payload.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Sharing Objects between LightningWorks
88

99
**Level:** Advanced
1010

11-
**Prerequisite**: Reach Level 16+, know about the `pandas DataFrames <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ and read and read the `Access app state guide <../../access_app_state.html>`_.
11+
**Prerequisite**: Reach Level 16+, know about the `pandas DataFrames <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ and read and read the :doc:`Access app state guide <../../workflows/access_app_state>`.
1212

1313
----
1414

docs/source-app/examples/dag/dag_from_scratch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this example, you will learn how to create a simple DAG which:
1515

1616
and learn how to schedule this entire process.
1717

18-
Find the complete example `here <https://github.com/Lightning-AI/lightning/blob/master/examples/app_dag/app.py>`_.
18+
Find the complete example `here <https://github.com/Lightning-AI/lightning/blob/master/examples/app/dag/app.py>`_.
1919

2020
----
2121

docs/source-app/glossary/dag.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Can I Build a DAG with Lightning?
1919
*********************************
2020
Yes!
2121

22-
DAGs are one of the easiest Lightning Apps to build. For example, here's a `full app that defines a DAG <../examples/dag/dag.html>`_.
22+
DAGs are one of the easiest Lightning Apps to build. For example, here's a :doc:`full app that defines a DAG <../examples/dag/dag>`.
2323

2424
----
2525

docs/source-app/glossary/storage/drive_content.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
What are Lightning Drives?
55
**************************
66

7-
Lightning Drives are shared app storage that allow you to share files between `LightningWork (Work) <../../core_api/lightning_work/index.html>`_ components, so that you distributed components can share files when running on the cloud. Using drives, you can run your Lightning App both locally and in the cloud without changing the code.
7+
Lightning Drives are shared app storage that allow you to share files between :doc:`LightningWork (Work) <../../core_api/lightning_work/index>` components, so that you distributed components can share files when running on the cloud. Using drives, you can run your Lightning App both locally and in the cloud without changing the code.
88

99
The Drive object provides a central place for your components to share data.
1010

docs/source-app/levels/advanced/level_17.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Level 17: Rerun components
33
##########################
44
**Audience:** Users who want Work.run() to activate multiple times in an app.
55

6-
**Prereqs:** Level 16+ and read the `Event Loop guide <../glossary/event_loop.html>`_.
6+
**Prereqs:** Level 16+ and read the :doc:`Event Loop guide <../../glossary/event_loop>`.
77

88
----
99

docs/source-app/levels/advanced/level_18.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Level 18: Share objects between LightningWorks
33
##############################################
44
**Audience:** Users moving DataFrames or outputs, between Lightning Works (usually data engineers).
55

6-
**Prereqs:** Level 16+ and know about the Pandas library and read the `Access app state guide <../../access_app_state.html>`_.
6+
**Prereqs:** Level 16+ and know about the Pandas library and read the :doc:`Access app state guide <../../workflows/access_app_state>`.
77

88
----
99

docs/source-app/levels/advanced/start_dynamic_components.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Level: Start dynamic components
33
###############################
44
**Audience:** Users who want to run a Lightning Component in parallel (asynchroneously).
55

6-
**Prereqs:** You must have finished the `Basic levels <../basic/>`_.
6+
**Prereqs:** You must have finished the :doc:`Basic levels <../basic/index>`.
77

88
----
99

docs/source-app/levels/basic/build_a_lightning_component.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Why you need Lightning components
1313
A Lightning component is a self-contained, modular machine-learning component
1414
that you can plug into your existing ML workflows. A Lightning component organizes arbitrary code so it can run on the cloud, manages
1515
its own infrastructure, cloud costs, networking and more. Connect components using your current workflow management tools or
16-
our `next-generation reactive orchestrator <../intermediate/index.html>`_.
16+
our :doc:`next-generation reactive orchestrator <../intermediate/index>`.
1717

1818
Components run on the cloud or your laptop without code changes 🤯🤯.
1919

docs/source-app/levels/basic/real_lightning_component_implementations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Level 2: Explore real component implementations
33
###############################################
44
**Audience:** Users who want to deeply understand what is possible with Lightning components.
55

6-
**Prereqs:** You must have finished `level 1 <../basic/build_a_lightning_component.html>`_.
6+
**Prereqs:** You must have finished :doc:`level 1 <../basic/build_a_lightning_component>`.
77

88
----
99

0 commit comments

Comments
 (0)