diff --git a/docs/CommandLine.html b/docs/CommandLine.html index 02a5707eec7..83db04d6ed4 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -1714,7 +1714,7 @@ our example, we implement parse as:

while (1) { switch (*End++) { - case 0: break; // No error + case 0: return false; // No error case 'i': // Ignore the 'i' in KiB if people use that case 'b': case 'B': // Ignore B suffix break; @@ -1728,7 +1728,6 @@ our example, we implement parse as:

return O.error(": '" + Arg + "' value invalid for file size argument!"); } } - return false; }