completely removed Plugins from CodeIgniter
diff --git a/user_guide/overview/appflow.html b/user_guide/overview/appflow.html
index 4a1c8a3..4881fd7 100644
--- a/user_guide/overview/appflow.html
+++ b/user_guide/overview/appflow.html
@@ -68,7 +68,7 @@
<li>The Router examines the HTTP request to determine what should be done with it.</li>
<li>If a cache file exists, it is sent directly to the browser, bypassing the normal system execution.</li>
<li>Security. Before the application controller is loaded, the HTTP request and any user submitted data is filtered for security.</li>
-<li>The Controller loads the model, core libraries, plugins, helpers, and any other resources needed to process the specific request.</li>
+<li>The Controller loads the model, core libraries, helpers, and any other resources needed to process the specific request.</li>
<li>The finalized View is rendered then sent to the web browser to be seen. If caching is enabled, the view is cached first so
that on subsequent requests it can be served.</li>
</ol>
diff --git a/user_guide/overview/at_a_glance.html b/user_guide/overview/at_a_glance.html
index 56f208a..be7e5e2 100644
--- a/user_guide/overview/at_a_glance.html
+++ b/user_guide/overview/at_a_glance.html
@@ -107,7 +107,7 @@
much more.</p>
<h2>CodeIgniter is Extensible</h2>
-<p>The system can be easily extended through the use of plugins and helper libraries, or through class extensions or system hooks.</p>
+<p>The system can be easily extended through the use of your own libraries, helpers, or through class extensions or system hooks.</p>
<h2>CodeIgniter Does Not Require a Template Engine</h2>
diff --git a/user_guide/overview/features.html b/user_guide/overview/features.html
index fe0bbe9..eae9229 100644
--- a/user_guide/overview/features.html
+++ b/user_guide/overview/features.html
@@ -94,7 +94,7 @@
<li>Unit Testing Class</li>
<li>Search-engine Friendly URLs</li>
<li>Flexible URI Routing</li>
-<li>Support for Hooks, Class Extensions, and Plugins</li>
+<li>Support for Hooks and Class Extensions</li>
<li>Large library of "helper" functions</li>
</ul>