summaryrefslogtreecommitdiffstats
path: root/user_guide/general
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-05-18 05:57:40 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-05-18 05:57:40 +0200
commitc8b21742927c217770e950005741850f17b5d32c (patch)
tree296f0215049159272a97246e1b4895304cfb70a1 /user_guide/general
parent859407fbefb2cc44089a7af411b4a62446e5c909 (diff)
documented load->model in the Loader docs
Diffstat (limited to 'user_guide/general')
-rw-r--r--user_guide/general/models.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/general/models.html b/user_guide/general/models.html
index c0d972683..2759f0219 100644
--- a/user_guide/general/models.html
+++ b/user_guide/general/models.html
@@ -164,7 +164,7 @@ To load a model you will use the following function:</p>
<p>If you model is located in a sub-folder, include the relative path from your models folder. For example, if
you have a model located at <dfn>application/models/blog/queries.php</dfn> you'll load it using:</p>
-<code>$this->load->model('blog/queries');</code>
+<code>$this->load->model('<var>blog/queries</var>');</code>
<p>Once loaded, you will access your model functions using an object with the same name as your class:</p>