Index: trunk/phase3/maintenance/updaters.inc |
— | — | @@ -1483,7 +1483,7 @@ |
1484 | 1484 | array("revision", "rev_len", "INTEGER"), |
1485 | 1485 | array("revision", "rev_deleted", "SMALLINT NOT NULL DEFAULT 0"), |
1486 | 1486 | array("user_newtalk", "user_last_timestamp", "TIMESTAMPTZ"), |
1487 | | - array("site_stats", "ss_active_users", "INTERGER DEFAULT '-1'"), |
| 1487 | + array("site_stats", "ss_active_users", "INTEGER DEFAULT '-1'"), |
1488 | 1488 | ); |
1489 | 1489 | |
1490 | 1490 | |
Index: trunk/phase3/docs/php-memcached/Documentation |
— | — | @@ -165,7 +165,7 @@ |
166 | 166 | <?php |
167 | 167 | require("MemCachedClient.inc.php"); |
168 | 168 | |
169 | | -// set the servers, with the last one having an interger weight value of 3 |
| 169 | +// set the servers, with the last one having an integer weight value of 3 |
170 | 170 | $options["servers"] = array("10.0.0.15:11000","10.0.0.16:11001",array("10.0.0.17:11002", 3)); |
171 | 171 | $options["debug"] = false; |
172 | 172 | |