[llvm] r327000 - Use ellipsis ... to indicate omitted commands

Ed Maste via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 8 05:52:04 PST 2018


Author: emaste
Date: Thu Mar  8 05:52:04 2018
New Revision: 327000

URL: http://llvm.org/viewvc/llvm-project?rev=327000&view=rev
Log:
Use ellipsis ... to indicate omitted commands

In an example like "clang -fxray-instrument .." the .. could be confused
with a literal .. (parent directory), which is used in commands like
"cmake -GNinja .."

Modified:
    llvm/trunk/docs/XRay.rst

Modified: llvm/trunk/docs/XRay.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/XRay.rst?rev=327000&r1=326999&r2=327000&view=diff
==============================================================================
--- llvm/trunk/docs/XRay.rst (original)
+++ llvm/trunk/docs/XRay.rst Thu Mar  8 05:52:04 2018
@@ -59,7 +59,7 @@ For example:
 
 ::
 
-  clang -fxray-instrument ..
+  clang -fxray-instrument ...
 
 By default, functions that have at least 200 instructions will get XRay
 instrumentation points. You can tweak that number through the
@@ -67,7 +67,7 @@ instrumentation points. You can tweak th
 
 ::
 
-  clang -fxray-instrument -fxray-instruction-threshold=1 ..
+  clang -fxray-instrument -fxray-instruction-threshold=1 ...
 
 You can also specifically instrument functions in your binary to either always
 or never be instrumented using source-level attributes. You can do it using the




More information about the llvm-commits mailing list