diff options
author | Alex Crichton <alex@alexcrichton.com> | 2014-07-15 19:13:42 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2014-07-15 19:13:42 -0700 |
commit | 3a7ec7f4c4716d2967aedab2ef3d051c9cfc2041 (patch) | |
tree | 89c9774f1230534d864acd6e2b4ddf235bb52921 | |
parent | c4d9e5c0b4f867a00e4a1042d59549fcdb11a074 (diff) | |
download | milf-rs-3a7ec7f4c4716d2967aedab2ef3d051c9cfc2041.tar.gz milf-rs-3a7ec7f4c4716d2967aedab2ef3d051c9cfc2041.zip |
Update an error message with \U support
-rw-r--r-- | src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs index ffe3eb8..ec9adf9 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -355,7 +355,7 @@ impl<'a> Parser<'a> { lo: pos, hi: pos + 1, desc: format!("expected {} hex digits \ - after a `u` escape", len), + after a `{}` escape", len, c), }) } } |