Skip to content

Commit eeb736c

Browse files
committed
Minor minor minor
1 parent b562f50 commit eeb736c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/components_guide_web/templates/composable_systems/desirable-properties.html.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ sqlite>
9393
9494
<h2 id=idempotent>Idempotent operations</h2>
9595
96-
- The same effect is produced if run once, twice, or a thousand times
96+
- The same result is produced if run once, twice, or a thousand times
9797
- *e.g. Adding an item to a set*
9898
- *e.g. Removing an item from a set*
9999
- *e.g. Sorting a list of items repeatedly*
100100
- *e.g. HTTP `PUT` request*
101-
- *e.g. Consumer of an at-least-once event delivery system*
101+
- *e.g. Consumers of an at-least-once event delivery system*
102102
- *e.g. [Stripe charges](https://stripe.com/docs/api/idempotent_requests)*
103103
- **Tip:** To get idempotent behavior, you could generate a [random](#random) identifier for each request, and have the receiver record which requests have been processed, and then skip whenever one is repeated.
104104
- See also: [Distributed Systems Shibboleths](https://jolynch.github.io/posts/distsys_shibboleths/)

0 commit comments

Comments
 (0)