Skip to content

Commit

Permalink
fix relative paths in hello_world example (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
aksh-at authored Feb 14, 2024
1 parent b3a3775 commit b58a296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 01_getting_started/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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?
Expand Down

0 comments on commit b58a296

Please sign in to comment.