docs: sanitize
[awesomized/libmemcached] / docs / source / libmemcached / memcached_analyze.rst
index 90189d96d2609a750f647cd53ea9cc4cff80e248..9cfda0d5c67cecb20cbd533e59d346cc5c28cfeb 100644 (file)
@@ -1,10 +1,8 @@
-=================
 Analyzing servers
 =================
 
 Analyze server information
 
---------
 SYNOPSIS
 --------
 
@@ -19,7 +17,6 @@ SYNOPSIS
  
 .. function::  memcached_analysis_st *memcached_analyze(memcached_st *ptr, memcached_stat_st *stat, memcached_return_t *error)
 
------------
 DESCRIPTION
 -----------
 
@@ -27,25 +24,23 @@ DESCRIPTION
 collection of servers) for their current state. Queries to find state return a
 :type:`memcached_analysis_st` structure. You are responsible for freeing this structure.
 
-:func:`memcached_analyze` analyzes useful information based on the 
+:func:`memcached_analyze` analyzes useful information based on the
 provided servers and sets the result to the :type:`memcached_analysis_st` 
 structure. The return value must be freed by the calling application.
 
-A command line tool, :program:`memstat` with the option :option:`memstat --analyze`, 
+A command line tool, :program:`memstat` with the option :option:`memstat --analyze`,
 is provided so that you do not have to write an application to use this method.
 
-------
 RETURN
 ------
 
-A pointer to the allocated :type:`memcached_analysis_st` structure on 
+A pointer to the allocated :type:`memcached_analysis_st` structure on
 success and a NULL pointer on failure. You may inspect the error detail by 
 checking the :type:`memcached_return_t` value.
 
 Any method returning a :type:`memcached_analysis_st` expects you to free the
 memory allocated for it.
 
---------
 SEE ALSO
 --------