From: Hussain Ali <56768095+hussainnaqvee@users.noreply.github.com> Date: Tue, 28 Nov 2023 08:04:38 +0000 (+0500) Subject: Fixed memcached invoke function. X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=f5a60f70916365f82c379339d7c5644788806a3c;p=awesomized%2Flibmemcached Fixed memcached invoke function. while initializing memcached_st, it had a missing `)` for the `memcached` method. --- diff --git a/docs/source/libmemcached/examples.rst b/docs/source/libmemcached/examples.rst index dfd7fa25..c274966a 100644 --- a/docs/source/libmemcached/examples.rst +++ b/docs/source/libmemcached/examples.rst @@ -18,7 +18,7 @@ Connecting to servers "--SERVER=host10.example.com " "--SERVER=host11.example.com " "--SERVER=host10.example.com"; - memcached_st *memc= memcached(config_string, strlen(config_string); + memcached_st *memc= memcached(config_string, strlen(config_string)); { // ... }