reworded some comments
authorTim Starling <tstarling@users.mediawiki.org>
Sat, 14 May 2005 05:36:43 +0000 (05:36 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sat, 14 May 2005 05:36:43 +0000 (05:36 +0000)
includes/Group.php

index 48cd753..958cfe0 100644 (file)
@@ -17,7 +17,7 @@ class Group {
        var $id;
        /** string $description Description of the group */
        var $description;
-       /** boolean $dataLoaded Whereas we grabbed datas from the database */
+       /** boolean $dataLoaded Whether data has been loaded from the database */
        var $dataLoaded;
        /** string $rights Contain rights values : "foo,bar,bla" */
        var $rights;
@@ -37,7 +37,7 @@ class Group {
                $this->rights = false;
        }
 
-       /** Load group datas from database */
+       /** Load group data from database */
        function loadFromDatabase() {
                $fname = 'Group::loadFromDatabase';