From 38c3b5e8f1cd6898b8dfe54f1849c8e424b5dd49 Mon Sep 17 00:00:00 2001 From: NitrogenPointBlue <110332643+NitrogenPointBlue@users.noreply.github.com> Date: Tue, 30 Aug 2022 11:05:27 -0400 Subject: [PATCH] Fix typos in stat module examples (#78651) --- lib/ansible/modules/stat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/stat.py b/lib/ansible/modules/stat.py index ff0f6712a9c..918b588ffd2 100644 --- a/lib/ansible/modules/stat.py +++ b/lib/ansible/modules/stat.py @@ -129,12 +129,12 @@ EXAMPLES = r''' msg: "Path exists and is a directory" when: p.stat.isdir is defined and p.stat.isdir -- name: Don not do checksum +- name: Do not calculate the checksum ansible.builtin.stat: path: /path/to/myhugefile get_checksum: no -- name: Use sha256 to calculate checksum +- name: Use sha256 to calculate the checksum ansible.builtin.stat: path: /path/to/something checksum_algorithm: sha256