]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/string-convert.cc
Docs: fix documentation reference of translation committishes
[lilypond.git] / flower / string-convert.cc
index 6a6dbc6d7c655882d9ec18f1415b5dc9d5a6d1d0..ef64af25b606fe753ac6d4015cba154f73f899fe 100644 (file)
@@ -117,7 +117,7 @@ String_convert::hex2bin (string hex_string, string &bin_string_r)
       int high_i = hex2nibble (*byte++);
       int low_i = hex2nibble (*byte++);
       if (high_i < 0 || low_i < 0)
-       return 1; // illegal char
+       return 1; // invalid char
       bin_string_r += to_string ((char) (high_i << 4 | low_i), 1);
       i += 2;
     }