summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-01-25 16:32:47 +0100
committerAndrey Andreev <narf@devilix.net>2015-01-25 16:32:47 +0100
commitdca5aa2682fc7955de8e3e178c733bf51ecc965a (patch)
tree638c9d78c3263113de6c800832f1b24dd781b8ef
parentaed962b9561840e71543062ff362cdbf54106be0 (diff)
parent7201c9b7ddc0749e80b19796f0541853bab9be78 (diff)
Merge pull request #3508 from vlakoff/documentation-2
[ci skip] Small fixes in documentation
-rw-r--r--user_guide_src/source/general/ancillary_classes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/general/ancillary_classes.rst b/user_guide_src/source/general/ancillary_classes.rst
index f9b6ba231..cc232f447 100644
--- a/user_guide_src/source/general/ancillary_classes.rst
+++ b/user_guide_src/source/general/ancillary_classes.rst
@@ -52,7 +52,7 @@ Once you've assigned the object to a variable, you'll use that variable
This is very important. Assigning by reference allows you to use the
original CodeIgniter object rather than creating a copy of it.
-Furthermore, if you'll be using ``get_intance()`` inside anoter class,
+Furthermore, if you'll be using ``get_instance()`` inside another class,
then it would be better if you assign it to a property. This way, you
won't need to call ``get_instance()`` in every single method.