Skip to content

Commit c788ad3

Browse files
authored
docs: fix formatting
1 parent 56cd9b0 commit c788ad3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

documentation/topics/advanced/reactor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ end
138138
return :create_post
139139
```
140140

141-
## Handling failure.
141+
## Handling failure
142142

143143
Reactor is a saga executor, which means that when failure occurs it tries to
144144
clean up any intermediate state left behind. By default the `create`, `update`
@@ -148,7 +148,7 @@ failure downstream in the reactor. This can be changed by providing both an
148148
`:outside_transaction` or `:always` depending on your resource and datalayer
149149
semantics.
150150

151-
### The `undo` option.
151+
### The `undo` option
152152

153153
- `:never` - this is the default, and means that the reactor will never try and
154154
undo the action's work. This is the most performant option, as it means that
@@ -159,7 +159,7 @@ semantics.
159159
will rollback.
160160
- `:always` - this forces the step to always undo it's work on failure.
161161

162-
### The `undo_action` option.
162+
### The `undo_action` option
163163

164164
The behaviour of the `undo_action` is action specific:
165165

0 commit comments

Comments
 (0)