Browse Source

Minor - Update doc.

Julio Montoya 10 years ago
parent
commit
4f15d643d0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      main/inc/lib/formvalidator/Element/Number.php

+ 3 - 3
main/inc/lib/formvalidator/Element/Number.php

@@ -2,9 +2,9 @@
 /* For licensing terms, see /license.txt */
 
 /**
- * Form element to select a date and hour (with popup datepicker)
+ * Number element
  *
- * Class DatePicker
+ * Class Number
  */
 class Number extends HTML_QuickForm_text
 {
@@ -18,7 +18,7 @@ class Number extends HTML_QuickForm_text
         if (!isset($attributes['id'])) {
             $attributes['id'] = $elementName;
         }
-        
+
         $attributes['type'] = 'number';
         $attributes['class'] = 'form-control';