added a note of clarity for sess_destroy()
diff --git a/user_guide/libraries/sessions.html b/user_guide/libraries/sessions.html
index a6b9dd3..66cadca 100644
--- a/user_guide/libraries/sessions.html
+++ b/user_guide/libraries/sessions.html
@@ -224,6 +224,10 @@
<h2>Destroying a Session </h2>
<p>To clear the current session: </p>
<code>$this->session->sess_destroy();</code>
+<p class="important"><strong>Note:</strong> This function should be the last one called, and even flash variables will no longer be available. If you only want some items destroyed and not all, use <dfn>unset_userdata()</dfn>.</p>
+
+
+
<h2>Session Preferences</h2>
<p>You'll find the following Session related preferences in your <kbd>application/config/config.php</kbd> file:</p>