瀏覽代碼

Merge pull request #7790 from JamesDeFabia/12575ParmCommas

HPCC-12575 Docs:Clarify parameterlist is comma sep list

Reviewed-By: Jamie Noss <james.noss@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 9 年之前
父節點
當前提交
9ebcf1000f

+ 1 - 1
docs/ECLLanguageReference/ECLR_mods/BltInFunc-IMPORT.xml

@@ -33,7 +33,7 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>The parameters to pass to the
+          <entry>A comma separated list of the parameters to pass to the
           <emphasis>function</emphasis>.</entry>
         </row>
 

+ 2 - 1
docs/ECLLanguageReference/ECLR_mods/SpecStruc-BeginC++.xml

@@ -41,7 +41,8 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>The parameters to pass to the C++ function.</entry>
+          <entry>A comma separated list of the parameters to pass to the
+          <emphasis>function</emphasis>.</entry>
         </row>
 
         <row>

+ 2 - 1
docs/ECLLanguageReference/ECLR_mods/SpecStruc-EMBED.xml

@@ -46,7 +46,8 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>The parameters to pass to the function.</entry>
+          <entry>A comma separated list of the parameters to pass to the
+          <emphasis>function</emphasis>.</entry>
         </row>
 
         <row>

+ 3 - 3
docs/ECLLanguageReference/ECLR_mods/SpecStruc-FuncTion.xml

@@ -44,9 +44,9 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>The parameters to pass to the <emphasis>code</emphasis>.
-          These are available to all attributes defined in the FUNCTION's
-          <emphasis>code</emphasis>.</entry>
+          <entry>A comma separated list of the parameters to pass to the
+          <emphasis>function</emphasis>. These are available to all attributes
+          defined in the FUNCTION's <emphasis>code</emphasis>.</entry>
         </row>
 
         <row>

+ 3 - 3
docs/ECLLanguageReference/ECLR_mods/SpecStruc-FuncTionMacro.xml

@@ -45,9 +45,9 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>A list of names (tokens) of the parameters that will be
-          passed to the function/macro. These names are used in the
-          <emphasis>code</emphasis> and <emphasis>retval</emphasis> to
+          <entry>A comma separated list of names (tokens) of the parameters
+          that will be passed to the function/macro. These names are used in
+          the <emphasis>code</emphasis> and <emphasis>retval</emphasis> to
           indicate where the passed parameter values are substituted when the
           function/macro is used. Value types for these parameters are not
           allowed, but default values may be specified as string

+ 6 - 4
docs/ECLLanguageReference/ECLR_mods/SpecStruc-Macro.xml

@@ -46,8 +46,8 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>A list of names (tokens) of the parameters that will be
-          passed to the macro. These names are used in the
+          <entry>A comma separated list of names (tokens) of the parameters
+          that will be passed to the macro. These names are used in the
           <emphasis>tokenstream</emphasis> to indicate where the passed
           parameters are substituted when the macro is used. Value types for
           these parameters are not allowed, but default values may be
@@ -159,6 +159,8 @@ MAC_join(J1,People,Property,'LEFT.ID=RIGHT.PeopleID,LEFT  OUTER')
 //expands out to:
 // J1 := JOIN(People,Property,LEFT.ID=RIGHT.PeopleID,LEFT OUTER);</programlisting>
 
-  <para>See Also: <link linkend="TRANSFORM_Structure">TRANSFORM Structure</link>, <link linkend="RECORD_Structure">RECORD Structure</link>, <link linkend="_UNIQUENAME">#UNIQUENAME</link>,
-  <link linkend="_EXPAND">#EXPAND</link></para>
+  <para>See Also: <link linkend="TRANSFORM_Structure">TRANSFORM
+  Structure</link>, <link linkend="RECORD_Structure">RECORD Structure</link>,
+  <link linkend="_UNIQUENAME">#UNIQUENAME</link>, <link
+  linkend="_EXPAND">#EXPAND</link></para>
 </sect1>

+ 13 - 5
docs/ECLLanguageReference/ECLR_mods/SpecStruc-Transform.xml

@@ -64,9 +64,10 @@
         <row>
           <entry><emphasis>parameterlist</emphasis></entry>
 
-          <entry>The value types and labels of the parameters that will be
-          passed to the TRANSFORM function. These are usually the dataset
-          records or COUNTER parameters but are not limited to those.</entry>
+          <entry>A comma separated list of the value types and labels of the
+          parameters that will be passed to the TRANSFORM function. These are
+          usually the dataset records or COUNTER parameters but are not
+          limited to those.</entry>
         </row>
 
         <row>
@@ -295,7 +296,14 @@ projected2 := PROJECT(namesTable, TRANSFORM(namesIdRecord,
 projected3 := PROJECT(namesTable, TRANSFORM(LEFT));
 //projected1, projected2, and projected3 all do the same thing</programlisting>
 
-    <para>See Also: <link linkend="RECORD_Structure">RECORD Structure</link>, <link linkend="RECORDOF">RECORDOF</link>, <link linkend="TYPEOF">TYPEOF</link>, <link linkend="JOIN">JOIN</link>, <link linkend="PROJECT">PROJECT</link>, <link linkend="ITERATE">ITERATE</link>,
-    <link linkend="ROLLUP">ROLLUP</link>, <link linkend="NORMALIZE">NORMALIZE</link>, <link linkend="DENORMALIZE">DENORMALIZE</link>, <link linkend="FETCH">FETCH</link>, <link linkend="PARSE">PARSE</link>, <link linkend="ROW">ROW</link></para>
+    <para>See Also: <link linkend="RECORD_Structure">RECORD Structure</link>,
+    <link linkend="RECORDOF">RECORDOF</link>, <link
+    linkend="TYPEOF">TYPEOF</link>, <link linkend="JOIN">JOIN</link>, <link
+    linkend="PROJECT">PROJECT</link>, <link linkend="ITERATE">ITERATE</link>,
+    <link linkend="ROLLUP">ROLLUP</link>, <link
+    linkend="NORMALIZE">NORMALIZE</link>, <link
+    linkend="DENORMALIZE">DENORMALIZE</link>, <link
+    linkend="FETCH">FETCH</link>, <link linkend="PARSE">PARSE</link>, <link
+    linkend="ROW">ROW</link></para>
   </sect2>
 </sect1>