travis: fix working dir
[awesomized/libmemcached] / docs / source / libmemcached_examples.rst
index a43ee1a2a11f77a07cffd6614531359ab9e0d13b..ccc40c91fa78e2217c076d8796946b1b8cbd00b5 100644 (file)
@@ -38,12 +38,9 @@ Creating a pool of servers
 --------------------------
 
 
-
 .. code-block:: c
 
-Creating a pool of Servers::
-
-  const char *config_string= "--SERVER=host10.example.com --SERVER=host11.example.com --SERVER=host10.example.com"; 
+  const char *config_string= "--SERVER=host10.example.com --SERVER=host11.example.com --SERVER=host10.example.com";
   
   memcached_pool_st* pool= memcached_pool(config_string, strlen(config_string));
 
@@ -80,8 +77,6 @@ Adding a value to the server
 
 .. code-block:: c
 
-Adding a value to the Server::
-
    char *key= "foo";
    char *value= "value";