summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database
diff options
context:
space:
mode:
authorftwbzhao <b.zhao1@gmail.com>2015-05-07 12:05:33 +0200
committerftwbzhao <b.zhao1@gmail.com>2015-05-08 12:32:53 +0200
commitc836f2af72536733fa1cc990b46522b9ef16153e (patch)
treea55162c05277665fa17ce5609ddb6aed1d749852 /user_guide_src/source/database
parent433c1a756f8c7ab9bc16e4721f98fee6faaee240 (diff)
update userguide
Diffstat (limited to 'user_guide_src/source/database')
-rw-r--r--user_guide_src/source/database/utilities.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/database/utilities.rst b/user_guide_src/source/database/utilities.rst
index cc4aeb018..81b949dd7 100644
--- a/user_guide_src/source/database/utilities.rst
+++ b/user_guide_src/source/database/utilities.rst
@@ -18,7 +18,7 @@ Initializing the Utility Class
Load the Utility Class as follows::
- $this->load->dbutil()
+ $this->load->dbutil();
You can also pass another database object to the DB Utility loader, in case
the database you want to manage isn't the default one::
@@ -35,7 +35,7 @@ assigning it directly to ``$this->dbutil``.
Once initialized you will access the methods using the ``$this->dbutil``
object::
- $this->dbutil->some_method()
+ $this->dbutil->some_method();
****************************
Using the Database Utilities