From 7cbb309c83a5ea52fb53736ebe517f0978c2a901 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 27 Aug 2014 11:55:05 +0200 Subject: [PATCH] fixing typo --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index c200c99..9b11e96 100644 --- a/README +++ b/README @@ -41,7 +41,7 @@ echo $connection->get('hello', 200); //get the value of key hello with a timeout //multi-set $batch = $libredis->create_batch(); $batch->set('hello', 'world'); -$batch->set('hello2', 'world2'; +$batch->set('hello2', 'world2'); $batch->execute($connection, 200); //same as $connection->execute($batch, ...) //multi-get $batch = $libredis->create_batch();