Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

Commit

Permalink
Update TextEncoder.php
Browse files Browse the repository at this point in the history
Fixed wrong character in SUBMODE_PUNCT array: "g" -> "\"".  Correct table is here: https://notendur.hi.is/hh/kennsla/grr/v08/pdf417.html
  • Loading branch information
wotan192 committed Jul 28, 2017
1 parent 292a49a commit f035695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Encoders/TextEncoder.php
Expand Up @@ -97,7 +97,7 @@ class TextEncoder implements EncoderInterface
self::SUBMODE_PUNCT => [
";", "<", ">", "@", "[", "\\", "]", "_", "`",
"~", "!", "\r", "\t", ",", ":", "\n", "-", ".",
"$", "/", "g", "|", "*", "(", ")", "?", "{", "}", "'",
"$", "/", "\"", "|", "*", "(", ")", "?", "{", "}", "'",
self::SWITCH_UPPER,
],
];
Expand Down

0 comments on commit f035695

Please sign in to comment.