From 6d2851be0e5bc67c4d8b626eab04f21dd01428a1 Mon Sep 17 00:00:00 2001 From: brchristian Date: Tue, 21 Mar 2017 13:16:45 -0700 Subject: Typo fix in scanner.c --- ext/psych/yaml/scanner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext') diff --git a/ext/psych/yaml/scanner.c b/ext/psych/yaml/scanner.c index bfdf3ab..3ef90dc 100644 --- a/ext/psych/yaml/scanner.c +++ b/ext/psych/yaml/scanner.c @@ -3504,12 +3504,12 @@ yaml_parser_scan_plain_scalar(yaml_parser_t *parser, yaml_token_t *token) { if (IS_BLANK(parser->buffer)) { - /* Check for tab character that abuse indentation. */ + /* Check for tab characters that abuse indentation. */ if (leading_blanks && (int)parser->mark.column < indent && IS_TAB(parser->buffer)) { yaml_parser_set_scanner_error(parser, "while scanning a plain scalar", - start_mark, "found a tab character that violate indentation"); + start_mark, "found a tab character that violates indentation"); goto error; } -- cgit v1.2.3