fixing code spacing in Profiling, Models, Managing Apps, Hooks, and Helpers general docs
diff --git a/user_guide_src/source/general/profiling.rst b/user_guide_src/source/general/profiling.rst
index 60ef585..28c1dd7 100644
--- a/user_guide_src/source/general/profiling.rst
+++ b/user_guide_src/source/general/profiling.rst
@@ -48,13 +48,19 @@
 
 ::
 
-	$config['config']          = FALSE;     $config['queries']         = FALSE;
+	$config['config']          = FALSE;
+	$config['queries']         = FALSE;
 
 In your controllers, you can override the defaults and config file
 values by calling the set_profiler_sections() method of the :doc:`Output
 class <../libraries/output>`::
 
-	$sections = array(         'config'  => TRUE,         'queries' => TRUE         );          $this->output->set_profiler_sections($sections);
+	$sections = array(
+	    'config'  => TRUE,
+	    'queries' => TRUE
+	    );
+
+	$this->output->set_profiler_sections($sections);
 
 Available sections and the array key used to access them are described
 in the table below.