Update documentation for flags

This commit is contained in:
Jerin Philip 2021-05-03 16:28:45 +00:00
parent 9fffa2471c
commit b368c21520

View File

@ -25,11 +25,11 @@ inline marian::ConfigParser createConfigParser() {
cp.addOption<bool>(
"--bytearray", "Bergamot Options",
"Enable loads through ByteArrays to enable testing of byte-array codepath", false);
"Enable loads through byte-arrays to enable testing of byte-array codepath (false by default)", false);
cp.addOption<bool>(
"--check-bytearray", "Bergamot Options",
"Flag holds whether to check the content of the bytearray (true by default)", false);
"Flag holds whether to check the content of the bytearray (false by default)", false);
return cp;
}