Fix typos in blocks documentation examples. (#41508)
(cherry picked from commit a4f49ed648
)
This commit is contained in:
parent
0f50c2f1d7
commit
b6ec3242fd
1 changed files with 4 additions and 4 deletions
|
@ -50,7 +50,7 @@ Blocks also introduce the ability to handle errors in a way similar to exception
|
|||
|
||||
|
||||
tasks:
|
||||
- name: Attempt and gracefull roll back demo
|
||||
- name: Attempt and graceful roll back demo
|
||||
block:
|
||||
- debug:
|
||||
msg: 'I execute normally'
|
||||
|
@ -65,7 +65,7 @@ Blocks also introduce the ability to handle errors in a way similar to exception
|
|||
msg: 'I also never execute :-('
|
||||
always:
|
||||
- debug:
|
||||
msg: "this always executes"
|
||||
msg: "This always executes"
|
||||
|
||||
The tasks in the ``block`` would execute normally, if there is any error the ``rescue`` section would get executed
|
||||
with whatever you need to do to recover from the previous error. The ``always`` section runs no matter what previous
|
||||
|
@ -81,7 +81,7 @@ Another example is how to run handlers after an error occurred :
|
|||
|
||||
|
||||
tasks:
|
||||
- name: Attempt and gracefull roll back demo
|
||||
- name: Attempt and graceful roll back demo
|
||||
block:
|
||||
- debug:
|
||||
msg: 'I execute normally'
|
||||
|
@ -93,7 +93,7 @@ Another example is how to run handlers after an error occurred :
|
|||
handlers:
|
||||
- name: run me even after an error
|
||||
debug:
|
||||
msg: 'this handler runs even on error'
|
||||
msg: 'This handler runs even on error'
|
||||
|
||||
.. seealso::
|
||||
|
||||
|
|
Loading…
Reference in a new issue