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?