Skip to content

Commit

Permalink
apply 556
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbern committed Jan 24, 2024
1 parent 7a6fa3e commit c187028
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 01_getting_started/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def f(i):
#
# Inside the `main()` function body, we are calling the function `f` in three ways:
#
# 1 As a simple local call, `f(1000)`
# 1 As a simple local call, `f.local(1000)`
# 2. As a simple *remote* call `f.remote(1000)`
# 3. By mapping over the integers `0..19`

Expand Down
2 changes: 1 addition & 1 deletion 11_notebooks/basic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"\n",
"\n",
"with stub.run():\n",
" print(quadruple(100))\n",
" print(quadruple.local(100))\n",
" print(quadruple.remote(100)) # run remotely\n",
" result = quadruple.remote(10_000_000)"
]
Expand Down

0 comments on commit c187028

Please sign in to comment.