diff --git a/README.md b/README.md
index 616add93d097e656bc5b454def337e2c3b4f468d..984cd737e651e567aa6c26e9cacf9228e668cab8 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;