From 1934206cef5e0a5c08afec2860179749a925bb0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 15 Jan 2016 17:51:46 +0100 Subject: [PATCH] Rules: comments-indentation: Fix typo --- yamllint/rules/comments_indentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yamllint/rules/comments_indentation.py b/yamllint/rules/comments_indentation.py index d8e76ab..41f1efd 100644 --- a/yamllint/rules/comments_indentation.py +++ b/yamllint/rules/comments_indentation.py @@ -40,4 +40,4 @@ def check(conf, token, prev, next): skip_first_line=skip_first): if comment.column != token_indent + 1: yield LintProblem(comment.line, comment.column, - 'comment not intended like content') + 'comment not indented like content')