diff options
author | knut <> | 2007-05-30 23:27:00 +0000 |
---|---|---|
committer | knut <> | 2007-05-30 23:27:00 +0000 |
commit | c3a72002383cb3de9bdcff09214bb757b2bc5e46 (patch) | |
tree | 9c8c1fa0f4d83e38c46ba4485f849a2f5d218311 /framework/Util/TDataFieldAccessor.php | |
parent | f71f9562d2ed0839f48bbf1bda7a80d0bc157778 (diff) |
fixing small typos in the API documentation
Diffstat (limited to 'framework/Util/TDataFieldAccessor.php')
-rw-r--r-- | framework/Util/TDataFieldAccessor.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/Util/TDataFieldAccessor.php b/framework/Util/TDataFieldAccessor.php index 159ec950..b5c65044 100644 --- a/framework/Util/TDataFieldAccessor.php +++ b/framework/Util/TDataFieldAccessor.php @@ -19,9 +19,9 @@ * and the corresponding element value is returned;
* - If the data is a TMap or TList object, then the field is treated as a key
* into the map or list, and the corresponding value is returned.
- * - If the data is an object, the field is treated as a property or subproperty
+ * - If the data is an object, the field is treated as a property or sub-property
* defined with getter methods. For example, if the object has a method called
- * getMyValue(), then field 'MyValue' will retrive the result of this method call.
+ * getMyValue(), then field 'MyValue' will retrieve the result of this method call.
* If getMyValue() returns an object which contains a method getMySubValue(),
* then field 'MyValue.MySubValue' will return that method call result.
*
@@ -38,9 +38,9 @@ class TDataFieldAccessor * and the corresponding element value is returned;
* - If the data is a TMap or TList object, then the field is treated as a key
* into the map or list, and the corresponding value is returned.
- * - If the data is an object, the field is treated as a property or subproperty
+ * - If the data is an object, the field is treated as a property or sub-property
* defined with getter methods. For example, if the object has a method called
- * getMyValue(), then field 'MyValue' will retrive the result of this method call.
+ * getMyValue(), then field 'MyValue' will retrieve the result of this method call.
* If getMyValue() returns an object which contains a method getMySubValue(),
* then field 'MyValue.MySubValue' will return that method call result.
* @param mixed data containing the field value, can be an array, TMap, TList or object.
|