From 844b1dcfc7a2f377cd083121367ea4354e43a18c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrienberaud@gmail.com> Date: Fri, 21 Nov 2014 11:54:51 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 616add93..984cd737 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ int main() { node.putSigned("unique_key_42", some_data); // get data from the dht - node.get("other_unique_key", [](const std::vector<std::shared_ptr<Value>>& values) { + node.get("other_unique_key", [](const std::vector<std::shared_ptr<dht::Value>>& values) { // Callback called when values are found for (const auto& value : values) std::cout << "Found value: " << value << std::endl; -- GitLab