[ci skip] Manually apply an improved version of PR #3034 (doc fixes)
diff --git a/user_guide_src/source/libraries/xmlrpc.rst b/user_guide_src/source/libraries/xmlrpc.rst
index c2e9a11..5f1c917 100644
--- a/user_guide_src/source/libraries/xmlrpc.rst
+++ b/user_guide_src/source/libraries/xmlrpc.rst
@@ -87,7 +87,7 @@
 
 	if ( ! $this->xmlrpc->send_request())
 	{
-	    echo $this->xmlrpc->display_error();
+		echo $this->xmlrpc->display_error();
 	}
 
 Explanation
@@ -152,7 +152,7 @@
 	$this->load->library('xmlrpc');
 	$this->load->library('xmlrpcs');
 
-	$config['functions']['new_post'] = array('function' => 'My_blog.new_entry'),
+	$config['functions']['new_post'] = array('function' => 'My_blog.new_entry');
 	$config['functions']['update_post'] = array('function' => 'My_blog.update_entry');
 	$config['object'] = $this;
 
@@ -523,7 +523,7 @@
 		:param	bool	$flag: Debug status flag
 		:rtype:	void
 
-	Enables or disables debugging, which will display a variety of information and error data helpful during development.
+		Enables or disables debugging, which will display a variety of information and error data helpful during development.
 
 	.. method:: display_error()
 
@@ -575,4 +575,4 @@
 				'struct'
 			);
 
-		return $this->xmlrpc->send_response($response);
\ No newline at end of file
+			return $this->xmlrpc->send_response($response);
\ No newline at end of file