Changeset 274 for libyaml/trunk/src/scanner.c
- Timestamp:
- 07/31/08 16:46:47 (5 years ago)
- File:
-
- 1 edited
-
libyaml/trunk/src/scanner.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libyaml/trunk/src/scanner.c
r265 r274 1057 1057 return SCANNER_ERROR_WITH_CONTEXT_INIT(parser, 1058 1058 "while scanning a simple key", simple_key->mark, 1059 "could not f ound expected ':'", parser->mark);1059 "could not find expected ':'", parser->mark); 1060 1060 } 1061 1061 … … 1127 1127 return SCANNER_ERROR_WITH_CONTEXT_INIT(parser, 1128 1128 "while scanning a simple key", simple_key->mark, 1129 "could not f ound expected ':'", parser->mark);1129 "could not find expected ':'", parser->mark); 1130 1130 } 1131 1131 } … … 2057 2057 SCANNER_ERROR_WITH_CONTEXT_INIT(parser, 2058 2058 "while scanning a directive", start_mark, 2059 "did not f ound expected comment or line break", parser->mark);2059 "did not find expected comment or line break", parser->mark); 2060 2060 goto error; 2061 2061 } … … 2113 2113 SCANNER_ERROR_WITH_CONTEXT_INIT(parser, 2114 2114 "while scanning a directive", start_mark, 2115 "c annot found expected directive name", parser->mark);2115 "could not find expected directive name", parser->mark); 2116 2116 goto error; 2117 2117 } … … 2470 2470 SCANNER_ERROR_WITH_CONTEXT_INIT(parser, 2471 2471 "while scanning a tag", start_mark, 2472 "did not f ound expected whitespace or line break", parser->mark);2472 "did not find expected whitespace or line break", parser->mark); 2473 2473 goto error; 2474 2474 } … … 2835 2835 SCANNER_ERROR_WITH_CONTEXT_INIT(parser, 2836 2836 "while scanning a block scalar", start_mark, 2837 "did not f ound expected comment or line break", parser->mark);2837 "did not find expected comment or line break", parser->mark); 2838 2838 goto error; 2839 2839 }
Note: See TracChangeset
for help on using the changeset viewer.
