diff options
-rw-r--r-- | docs/CommandLine.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/CommandLine.html b/docs/CommandLine.html index 02a5707..83db04d 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -1714,7 +1714,7 @@ our example, we implement <tt>parse</tt> as:</p> <b>while</b> (1) { <b>switch</b> (*End++) { - <b>case</b> 0: break; <i>// No error</i> + <b>case</b> 0: <b>return</b> false; <i>// No error</i> <b>case</b> 'i': <i>// Ignore the 'i' in KiB if people use that</i> <b>case</b> 'b': <b>case</b> 'B': <i>// Ignore B suffix</i> <b>break</b>; @@ -1728,7 +1728,6 @@ our example, we implement <tt>parse</tt> as:</p> <b>return</b> O.error(": '" + Arg + "' value invalid for file size argument!"); } } - <b>return</b> false; } </pre></div> |