Index: documentation/manual/en/module_specs/Zend_Validate-GreaterThan.xml
===================================================================
--- documentation/manual/en/module_specs/Zend_Validate-GreaterThan.xml	(revision 25042)
+++ documentation/manual/en/module_specs/Zend_Validate-GreaterThan.xml	(working copy)
@@ -28,7 +28,7 @@
         <itemizedlist>
             <listitem>
                 <para>
-                    <emphasis><property>min</property></emphasis>: Sets the minimum allowed value.
+                    <emphasis><property>min</property></emphasis>: Sets the minimum border value.
                 </para>
             </listitem>
         </itemizedlist>
@@ -44,15 +44,27 @@
 
         <programlisting language="php"><![CDATA[
 $valid  = new Zend_Validate_GreaterThan(array('min' => 10));
-$value  = 10;
+$value  = 11;
 $return = $valid->isValid($value);
 // returns true
 ]]></programlisting>
 
         <para>
-            The above example returns <constant>TRUE</constant> for all values which are equal to 10
-            or greater than 10.
+            The above example returns <constant>TRUE</constant> for all values which are greater
+            than 10.
         </para>
+
+        <programlisting language="php"><![CDATA[
+$valid  = new Zend_Validate_GreaterThan(array('min' => 10));
+$value  = 10;
+$return = $valid->isValid($value);
+// returns false
+]]></programlisting>
+
+        <para>
+            The above example returns <constant>FALSE</constant> for all values which are lesser
+            or equal to the minimum border value.
+        </para>
     </sect3>
 </sect2>
 <!--
