MediaWikiBagOStuff -> SqlBagOStuff in comment, both are the same since r55079
[lhc/web/wiklou.git] / includes / BagOStuff.php
index c4dd4aa..48f0e4f 100644 (file)
@@ -32,7 +32,7 @@
  * backends for local hash array and SQL table included:
  * <code>
  *   $bag = new HashBagOStuff();
- *   $bag = new MediaWikiBagOStuff($tablename); # connect to db first
+ *   $bag = new SqlBagOStuff(); # connect to db first
  * </code>
  *
  * @ingroup Cache