Skip to content

Commit

Permalink
message string
Browse files Browse the repository at this point in the history
  • Loading branch information
elucash committed Jan 24, 2018
1 parent 1f8f889 commit 94206f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/immutables/grammar/Escapes.java
Expand Up @@ -91,7 +91,7 @@ public static String unquote(String string) {
|| first == '\''
|| first == '`'
|| first == last,
"First and last chars should both be single or double quotes");
"First and last chars should both be single or double quotes or backticks");

return string.substring(1, string.length() - 1);
}
Expand Down

0 comments on commit 94206f0

Please sign in to comment.