From 9c0db1daebe289cedd76e78152f0948d086e3eb4 Mon Sep 17 00:00:00 2001 From: Jonathan Lassoff Date: Thu, 11 Jan 2024 14:30:48 +0000 Subject: [PATCH] Fix spelling in jinja.md (#3971) Co-authored-by: Sorin Sbarnea --- src/ansiblelint/rules/jinja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansiblelint/rules/jinja.md b/src/ansiblelint/rules/jinja.md index 9103c070b0..e4720d746c 100644 --- a/src/ansiblelint/rules/jinja.md +++ b/src/ansiblelint/rules/jinja.md @@ -12,7 +12,7 @@ version can report: As jinja2 syntax is closely following Python one we aim to follow [black](https://black.readthedocs.io/en/stable/) formatting rules. If you are -curious how black would reformat a small sniped feel free to visit +curious how black would reformat a small snippet feel free to visit [online black formatter](https://black.vercel.app/) site. Keep in mind to not include the entire jinja2 template, so instead of `{{ 1+2==3 }}`, do paste only `1+2==3`.