summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-09-14 04:22:15 +0100
committerJamie Matthews <[email protected]>2010-09-14 04:22:15 +0100
commit1be6c337852b0bdc03ac5b307023d3514b696368 (patch)
tree6a84d6aace6fd77e04ec9a060615d66de34ed3d6 /idiorm.php
parentca5f9c9fdd55f1054fe8d1cc5c8b858997226fc9 (diff)
Small changes to comments
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/idiorm.php b/idiorm.php
index 1876407..7a4b5da 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -206,7 +206,7 @@
/**
* Private constructor; can't be called directly.
- * Use a factory method instead (probably ORM::for_table)
+ * Use the ORM::for_table factory method instead.
*/
private function __construct($table_name, $data=array()) {
$this->table_name = $table_name;
@@ -269,7 +269,7 @@
}
/**
- * This method can be called hydrate (populate) this
+ * This method can be called to hydrate (populate) this
* instance of the class from an associative array of data.
* This will usually be called only from inside the class,
* but it's public in case you need to call it directly.