List:Commits« Previous MessageNext Message »
From:plavin Date:March 19 2007 3:54pm
Subject:svn commit - mysqldoc@docsrva: r5455 - trunk/dynamic-docs/opsfunctions
View as plain text  
Author: plavin
Date: 2007-03-19 15:54:03 +0100 (Mon, 19 Mar 2007)
New Revision: 5455

Log:
Corrections

Modified:
   trunk/dynamic-docs/opsfunctions/opfunctions.xml


Modified: trunk/dynamic-docs/opsfunctions/opfunctions.xml
===================================================================
--- trunk/dynamic-docs/opsfunctions/opfunctions.xml	2007-03-19 14:25:35 UTC (rev 5454)
+++ trunk/dynamic-docs/opsfunctions/opfunctions.xml	2007-03-19 14:54:03 UTC (rev 5455)
Changed blocks: 9, Lines Added: 15, Lines Deleted: 31; 5633 bytes

@@ -2968,7 +2968,7 @@
           <replaceable>charset_name</replaceable>]]></format>
       <argument seq="1" name="expr" type="numeric"></argument>  
       <!--Will this work, the only instance of a required argument 
-        following a variable numer of arguments?-->
+        following a variable number of arguments?-->
       <argument seq="2" name="expr" type="string">Character set
name</argument> 
     </arguments>    
     <return type="string"/>

@@ -3148,23 +3148,6 @@
     </versions>
   </function>
   
-  <function id="format" class="string">
-    <display>FORMAT()</display>
-    <description lang="en">Round to number of decimal places  </description>
-    <arguments>
-     
<format><![CDATA[<replaceable>X</replaceable>,<replaceable>D</replaceable>]]></format>
-      <argument seq="1" name="expr" type="numeric"></argument> 
-      <argument seq="2" name="expr" type="numeric">Number of decimal
places</argument> 
-    </arguments>    
-    <return type="string"/>
-    <error type="return"/>
-    <versions>
-      <manual version="4.1"/>
-      <manual version="5.0"/>
-      <manual version="5.1"/>
-    </versions>
-  </function>  
-  
   <function id="hex" class="string">
     <display>HEX()</display>
     <description lang="en">Return a string representation of a hex
value</description>

@@ -3457,7 +3440,8 @@
     <arguments>
       <format><![CDATA[<replaceable>substr</replaceable> IN
           <replaceable>str</replaceable>]]></format>
-      <argument seq="1" name="expr" type="string"></argument>  
+      <argument seq="1" name="expr" type="string">Needle</argument>  
+      <argument seq="2" name="expr" type="string">Haystack</argument>  
     </arguments>    
     <return type="numeric"/>
     <error type="return"/>

@@ -3486,7 +3470,7 @@
   
   <function id="repeat" class="string">
     <display>REPEAT()</display>
-    <description lang="en">Repeat a character the specified number of
times</description>
+    <description lang="en">Repeat a string the specified number of
times</description>
     <arguments>
      
<format><![CDATA[<replaceable>str</replaceable>,<replaceable>count</replaceable>]]></format>
       <argument seq="1" name="expr" type="string"></argument>  

@@ -3538,7 +3522,7 @@
   
   <function id="right" class="string">
     <display>RIGHT()</display>
-    <description lang="en">Return the specified number of characters from a
string</description>
+    <description lang="en">Return the specified rightmost number of
characters</description>
     <arguments>
      
<format><![CDATA[<replaceable>str</replaceable>,<replaceable>len</replaceable>]]></format>
       <argument seq="1" name="expr" type="string"></argument> 

@@ -3555,7 +3539,7 @@
   
   <function id="rpad" class="string">
     <display>RPAD()</display>
-    <description lang="en">Append specified character the specified number of
times</description>
+    <description lang="en">Append string the specified number of
times</description>
     <arguments>
       <format><![CDATA[<replaceable>str</replaceable>,
        
<replaceable>len</replaceable>,<replaceable>padstr</replaceable>]]></format>

@@ -3811,9 +3795,9 @@
     <arguments>
      
<format><![CDATA[<replaceable>N</replaceable>,<replaceable>N1</replaceable>,
        
<replaceable>N2</replaceable>,<replaceable>N3</replaceable>,...]]></format>
-      <argument seq="1" name="expr" type="numeric"></argument> 
-      <argument seq="2" name="expr" type="numeric"></argument> 
-      <argument seq="3" name="expr" type="numeric"></argument> 
+      <argument seq="1" name="expr" type="numeric">Value to find</argument> 
+      <argument seq="2" name="expr" type="numeric">Value searched</argument> 
+      <argument seq="3" name="expr" type="numeric">Value searched</argument> 
     </arguments>    
     <return type="numeric"/>
     <error type="return"/>

@@ -3861,14 +3845,14 @@
   </function>
   
   <function id="between" class="comparison">
-    <display>BETWEEN ... AND</display>
+    <display>BETWEEN ... AND ... </display>
     <description lang="en">Check whether a value is within a range of
values</description>
     <arguments>
       <format><![CDATA[<replaceable>expr</replaceable> BETWEEN
             <replaceable>min</replaceable> AND
             <replaceable>max</replaceable>]]></format>
-      <argument seq="1" name="expr" type="mixed"></argument> 
-      <argument seq="2" name="expr" type="mixed"></argument> 
+      <argument seq="1" name="expr" type="mixed">Minimum</argument> 
+      <argument seq="2" name="expr" type="mixed">Maximum</argument> 
     </arguments>    
     <return type="bool"/>
     <error type="return"/>

@@ -3880,14 +3864,14 @@
   </function>
   
   <function id="not-between" class="comparison">
-    <display>NOT BETWEEN ... AND</display>
+    <display>NOT BETWEEN ... AND ...</display>
     <description lang="en">Check whether a value is not within a range of
values</description>
     <arguments>
       <format><![CDATA[<replaceable>expr</replaceable>NOT BETWEEN
             <replaceable>min</replaceable> AND
             <replaceable>max</replaceable>]]></format>
-      <argument seq="1" name="expr" type="mixed"></argument> 
-      <argument seq="2" name="expr" type="mixed"></argument> 
+      <argument seq="1" name="expr" type="mixed">Minimum</argument> 
+      <argument seq="2" name="expr" type="mixed">Maximum</argument> 
     </arguments>    
     <return type="bool"/>
     <error type="return"/>


Thread
svn commit - mysqldoc@docsrva: r5455 - trunk/dynamic-docs/opsfunctionsplavin19 Mar