From 46f36dac6d3e6697d6be3679731e72012401abe8 Mon Sep 17 00:00:00 2001 From: Tao He Date: Fri, 28 May 2021 14:34:08 +0800 Subject: [PATCH] Fixes a typo in example code in README. Signed-off-by: Tao He --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51db31b..d78f984 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ this case since the respose has been already arrived (we are inside the callback { try { - etcd::Response response = response.task.get(); // can throw + etcd::Response response = response_task.get(); // can throw std::cout << response.value().as_string(); } catch (std::ecxeption const & ex)