[llvm] r239204 - [TableGen] Correct the documentation for 'foreach' in the Language Intro.

Craig Topper craig.topper at gmail.com
Fri Jun 5 17:44:43 PDT 2015


Author: ctopper
Date: Fri Jun  5 19:44:42 2015
New Revision: 239204

URL: http://llvm.org/viewvc/llvm-project?rev=239204&view=rev
Log:
[TableGen] Correct the documentation for 'foreach' in the Language Intro.

Modified:
    llvm/trunk/docs/TableGen/LangIntro.rst

Modified: llvm/trunk/docs/TableGen/LangIntro.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TableGen/LangIntro.rst?rev=239204&r1=239203&r2=239204&view=diff
==============================================================================
--- llvm/trunk/docs/TableGen/LangIntro.rst (original)
+++ llvm/trunk/docs/TableGen/LangIntro.rst Fri Jun  5 19:44:42 2015
@@ -190,7 +190,7 @@ supported include:
     for 'a' in 'c.'  This operation is analogous to $(subst) in GNU make.
 
 ``!foreach(a, b, c)``
-    For each member 'b' of dag or list 'a' apply operator 'c.'  'b' is a dummy
+    For each member of dag or list 'b' apply operator 'c.'  'a' is a dummy
     variable that should be declared as a member variable of an instantiated
     class.  This operation is analogous to $(foreach) in GNU make.
 





More information about the llvm-commits mailing list