diff --git a/user_guide/general/ancillary_classes.html b/user_guide/general/ancillary_classes.html
index 86e210f..f7c4a86 100644
--- a/user_guide/general/ancillary_classes.html
+++ b/user_guide/general/ancillary_classes.html
@@ -86,21 +86,21 @@
 

 <p>First, assign the Code Igniter object to a variable:</p>

 

-<code>$obj =& get_instance();</code>

+<code>$CI =& get_instance();</code>

 

 <p>Once you've assigned the object to a variable, you'll use that variable <em>instead</em> of <kbd>$this</kbd>:</p>

 

 <code>

-$obj =& get_instance();<br /><br />

-$obj->load->helper('url');<br />

-$obj->load->library('session');<br />

-$obj->config->item('base_url');<br />

+$CI =& get_instance();<br /><br />

+$CI->load->helper('url');<br />

+$CI->load->library('session');<br />

+$CI->config->item('base_url');<br />

 etc.

 </code>

 

 <p class="important"><strong>Note:</strong> You'll notice that the above get_instance() function is being passed by reference:

 <br /><br />

-<var>$obj =& get_instance();</var>

+<var>$CI =& get_instance();</var>

 <br /><br />

 This is very important. Assigning by reference allows you to use the original Code Igniter object rather than creating a copy of it.</p>

 </div>

diff --git a/user_guide/general/creating_libraries.html b/user_guide/general/creating_libraries.html
index e2a57f0..b73bfb8 100644
--- a/user_guide/general/creating_libraries.html
+++ b/user_guide/general/creating_libraries.html
@@ -184,21 +184,21 @@
 

 <p>First, assign the Code Igniter object to a variable:</p>

 

-<code>$obj =& get_instance();</code>

+<code>$CI =& get_instance();</code>

 

 <p>Once you've assigned the object to a variable, you'll use that variable <em>instead</em> of <kbd>$this</kbd>:</p>

 

 <code>

-$obj =& get_instance();<br /><br />

-$obj->load->helper('url');<br />

-$obj->load->library('session');<br />

-$obj->config->item('base_url');<br />

+$CI =& get_instance();<br /><br />

+$CI->load->helper('url');<br />

+$CI->load->library('session');<br />

+$CI->config->item('base_url');<br />

 etc.

 </code>

 

 <p class="important"><strong>Note:</strong> You'll notice that the above get_instance() function is being passed by reference:

 <br /><br />

-<var>$obj =& get_instance();</var>

+<var>$CI =& get_instance();</var>

 <br /><br />

 <kbd>This is very important.</kbd> Assigning by reference allows you to use the original Code Igniter object rather than creating a copy of it.</p>