Skip to content

Commit 0c31af9

Browse files
committed
More updates to README.md
1 parent 40eb10c commit 0c31af9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,9 @@ async def add(a: int, b: int, context: DurableContext) -> int:
173173
### Performing a side-effect "at most once"
174174

175175
Within your tools (and soon within your prompts and resources too),
176-
you can perform a side-effect that can _only_ be tried once using
177-
`at_most_once` (if you can perform the side-effect more than once
178-
using safely then always prefer `at_least_once`). Here's an example of
179-
`at_most_once`:
176+
you can perform a side-effect that can _only_ be **tried** once using
177+
`at_most_once` (if you can safely use `at_least_once` always prefer
178+
it). Here's an example of `at_most_once`:
180179

181180
```python
182181
from reboot.aio.workflows import at_least_once

0 commit comments

Comments
 (0)