Fix typos in parameter documentation
authorMatthias Schmidt <gravatronics@live.com>
Sat, 13 Jan 2018 17:03:49 +0000 (18:03 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 13 Jan 2018 17:03:49 +0000 (18:03 +0100)
See #2509

wcfsetup/install/files/lib/system/form/builder/field/IFormField.class.php
wcfsetup/install/files/lib/system/form/builder/field/II18nFormField.class.php
wcfsetup/install/files/lib/system/form/builder/field/TI18nFormField.class.php

index 343c6a20aa14229a2adc439fc069425062bf686a..57bcece4550d43367baa2bf2b06625cd47c7ab38 100644 (file)
@@ -27,7 +27,7 @@ interface IFormField extends IFormChildNode, IFormElement {
        /**
         * Sets whether this field is auto-focused and returns this field.
         * 
-        * @param       bool            $autoFocus      determined if field is auto-focused
+        * @param       bool            $autoFocus      determines if field is auto-focused
         * @return      static                          this field
         * 
         * @throws      \InvalidArgumentException       if the given value is no bool
@@ -103,7 +103,7 @@ interface IFormField extends IFormChildNode, IFormElement {
        /**
         * Sets whether the value of this field is immutable and returns this field.
         * 
-        * @param       bool            $immutable      determined if field value is immutable
+        * @param       bool            $immutable      determines if field value is immutable
         * @return      static                          this field
         * 
         * @throws      \InvalidArgumentException       if the given value is no bool
@@ -162,7 +162,7 @@ interface IFormField extends IFormChildNode, IFormElement {
        /**
         * Sets whether it is required to fill out this field and returns this field.
         * 
-        * @param       bool            $required       determined if field has to be filled out
+        * @param       bool            $required       determines if field has to be filled out
         * @return      static                          this field
         * 
         * @throws      \InvalidArgumentException       if the given value is no bool
index 833320a160ca625fa49a41b809d9f33eb5f74f41..d2875141c64a03a8b382c34a780cc1194808b647 100644 (file)
@@ -30,7 +30,7 @@ interface II18nFormField extends IFormField {
        /**
         * Sets whether this field is supports i18n input and returns this field.
         * 
-        * @param       bool            $i18n           determined if field is supports i18n input
+        * @param       bool            $i18n           determines if field is supports i18n input
         * @return      static                          this field
         * 
         * @throws      \InvalidArgumentException       if the given value is no bool
@@ -43,7 +43,7 @@ interface II18nFormField extends IFormField {
         * If this method sets that the field's value must be i18n input, it also must
         * ensure that i18n support is enabled.
         * 
-        * @param       bool            $i18nRequired           determined if field value must be i18n input
+        * @param       bool            $i18nRequired           determines if field value must be i18n input
         * @return      static                                  this field
         *
         * @throws      \InvalidArgumentException               if the given value is no bool
index 77da34dece5a2aadc949465695073763e4455941..0453cb50183fc888f2ca7758613b743a8a139727 100644 (file)
@@ -107,7 +107,7 @@ trait TI18nFormField {
        /**
         * Sets whether this field is supports i18n input and returns this field.
         * 
-        * @param       bool            $i18n           determined if field is supports i18n input
+        * @param       bool            $i18n           determines if field supports i18n input
         * @return      static                          this field
         * 
         * @throws      \InvalidArgumentException       if the given value is no bool
@@ -128,7 +128,7 @@ trait TI18nFormField {
         * If this method sets that the field's value must be i18n input, it also must
         * ensure that i18n support is enabled.
         *
-        * @param       bool            $i18nRequired           determined if field value must be i18n input
+        * @param       bool            $i18nRequired           determines if field value must be i18n input
         * @return      static                                  this field
         *
         * @throws      \InvalidArgumentException               if the given value is no bool