Skip to content

Commit f1240b1

Browse files
committed
Typo
1 parent 357b7bd commit f1240b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/modules/ROOT/pages/03-demo.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The transactional processing has been the cornerstone of many business applicati
6969
However, in most cases, the transactional processing isn't the best fit for real-world processes.
7070

7171
In our example, when the ride finishes, that's a real-world situation.
72-
However, the example uses the `+@Transational+` annotation, and operate on number of unrelated data.
72+
However, the example uses the `+@Transactional+` annotation, and operate on number of unrelated data.
7373
This means that when one of those operations fails, the whole processing will be rolled back.
7474
In effect, the end-user will receive a nasty error message.
7575

@@ -645,7 +645,7 @@ spec:
645645
retry: 10 # <3>
646646
----
647647

648-
<1> The `+backoffDelay+` is the delay between retries, and us use `+200ms+` initially.
648+
<1> The `+backoffDelay+` is the delay between retries, and we use `+200ms+` in this example.
649649
<2> The `+backoffPolicy+` is set to `+exponential+`, which means that the delay will be doubled each time.
650650
<3> The `+retry+` is the number of times we retry before giving up.
651651

0 commit comments

Comments
 (0)