From e909692f882cbf24f9b24795021f2316b49d5229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 18 Nov 2016 14:28:46 +0100 Subject: [PATCH] docs(truthy): Fix typo --- yamllint/rules/truthy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yamllint/rules/truthy.py b/yamllint/rules/truthy.py index 8b541a7..c453c86 100644 --- a/yamllint/rules/truthy.py +++ b/yamllint/rules/truthy.py @@ -17,9 +17,9 @@ """ Use this rule to forbid truthy values that are not quoted nor explicitly typed. -This would prevent YAML parsers to tranform ``[yes, FALSE, Off]`` into ``[true, -false, false]`` or ``{y: 1, yes: 2, on: 3, true: 4, True: 5}`` into ``{y: 1, -true: 5}``. +This would prevent YAML parsers from transforming ``[yes, FALSE, Off]`` into +``[true, false, false]`` or ``{y: 1, yes: 2, on: 3, true: 4, True: 5}`` into +``{y: 1, true: 5}``. .. rubric:: Examples