From 8a867462235d42169cbdf1398d9cc65408a47549 Mon Sep 17 00:00:00 2001 From: wxdao Date: Fri, 13 Oct 2017 12:08:35 +0800 Subject: [PATCH] Fix typo in playbooks_error_handling (#31636) --- docs/docsite/rst/playbooks_error_handling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/playbooks_error_handling.rst b/docs/docsite/rst/playbooks_error_handling.rst index df1a60e4ccf..6e9796ad21d 100644 --- a/docs/docsite/rst/playbooks_error_handling.rst +++ b/docs/docsite/rst/playbooks_error_handling.rst @@ -87,7 +87,7 @@ or based on the return code:: register: diff_cmd failed_when: diff_cmd.rc == 0 or diff_cmd.rc >= 2 -In previous version of Ansible, this can be still be accomplished as follows:: +In previous version of Ansible, this can still be accomplished as follows:: - name: this command prints FAILED when it fails command: /usr/bin/example-command -x -y -z