We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76acf5 commit fc3f452Copy full SHA for fc3f452
src/tokenizer.rs
@@ -275,7 +275,7 @@ impl<'a> TokenStream<'a> {
275
}
276
277
Err(
278
- Error::unexpected_format(
+ Error::unexpected_static_message(
279
"unterminated block string value"
280
)
281
@@ -293,7 +293,7 @@ impl<'a> TokenStream<'a> {
293
294
'\n' => {
295
return Err(
296
297
"unterminated string value"
298
299
);
@@ -308,7 +308,7 @@ impl<'a> TokenStream<'a> {
308
escaped = !escaped && cur_char == '\\';
309
310
311
312
313
314
0 commit comments