Changeset 273 for libyaml/branches/stable/src/scanner.c
- Timestamp:
- 07/31/08 16:41:02 (5 years ago)
- File:
-
- 1 edited
-
libyaml/branches/stable/src/scanner.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libyaml/branches/stable/src/scanner.c
r243 r273 1079 1079 return yaml_parser_set_scanner_error(parser, 1080 1080 "while scanning a simple key", simple_key->mark, 1081 "could not f ound expected ':'");1081 "could not find expected ':'"); 1082 1082 } 1083 1083 … … 1148 1148 return yaml_parser_set_scanner_error(parser, 1149 1149 "while scanning a simple key", simple_key->mark, 1150 "could not f ound expected ':'");1150 "could not find expected ':'"); 1151 1151 } 1152 1152 } … … 2073 2073 if (!IS_BREAKZ(parser->buffer)) { 2074 2074 yaml_parser_set_scanner_error(parser, "while scanning a directive", 2075 start_mark, "did not f ound expected comment or line break");2075 start_mark, "did not find expected comment or line break"); 2076 2076 goto error; 2077 2077 } … … 2127 2127 if (string.start == string.pointer) { 2128 2128 yaml_parser_set_scanner_error(parser, "while scanning a directive", 2129 start_mark, "c annot found expected directive name");2129 start_mark, "could not find expected directive name"); 2130 2130 goto error; 2131 2131 } … … 2473 2473 if (!IS_BLANKZ(parser->buffer)) { 2474 2474 yaml_parser_set_scanner_error(parser, "while scanning a tag", 2475 start_mark, "did not f ound expected whitespace or line break");2475 start_mark, "did not find expected whitespace or line break"); 2476 2476 goto error; 2477 2477 } … … 2827 2827 if (!IS_BREAKZ(parser->buffer)) { 2828 2828 yaml_parser_set_scanner_error(parser, "while scanning a block scalar", 2829 start_mark, "did not f ound expected comment or line break");2829 start_mark, "did not find expected comment or line break"); 2830 2830 goto error; 2831 2831 }
Note: See TracChangeset
for help on using the changeset viewer.
