From b58a2969710ad43c32509346e8cdf0161a95da33 Mon Sep 17 00:00:00 2001 From: Akshat Bubna Date: Wed, 14 Feb 2024 16:20:58 -0500 Subject: [PATCH] fix relative paths in hello_world example (#584) --- 01_getting_started/hello_world.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_getting_started/hello_world.py b/01_getting_started/hello_world.py index 522d735ef..d40991774 100644 --- a/01_getting_started/hello_world.py +++ b/01_getting_started/hello_world.py @@ -30,7 +30,7 @@ # # To make this function work with Modal, we just wrap it in a decorator # from our application `stub`, -# [`@stub.function`](docs/reference/modal.Stub#function). +# [`@stub.function`](/docs/reference/modal.Stub#function). @stub.function() @@ -78,7 +78,7 @@ def main(): # the `main` function and, mixed in with them, all the logs of `f` as it is run # locally, then remotely, and then remotely and in parallel. # -# That's all triggered by adding the [`@stub.local_entrypoint`](docs/reference/modal.Stub#local_entrypoint) decorator on `main`, +# That's all triggered by adding the [`@stub.local_entrypoint`](/docs/reference/modal.Stub#local_entrypoint) decorator on `main`, # which defines it as the function to start from locally when we invoke `modal run`. # # ## What just happened?