Make the example a bit easier to understand, suggested by Jim.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22964 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index 83db04d..02a5707 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -1714,7 +1714,7 @@
<b>while</b> (1) {
<b>switch</b> (*End++) {
- <b>case</b> 0: <b>return</b> false; <i>// No error</i>
+ <b>case</b> 0: break; <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,6 +1728,7 @@
<b>return</b> O.error(": '" + Arg + "' value invalid for file size argument!");
}
}
+ <b>return</b> false;
}
</pre></div>