diff --git a/doc/DEPENDENCY.md b/doc/DEPENDENCY.md index d3f1220b..1fe73846 100644 --- a/doc/DEPENDENCY.md +++ b/doc/DEPENDENCY.md @@ -43,7 +43,8 @@ In all examples below, we will attempt to compile: int main() { - questdb::ingress::line_sender sender{"localhost", 9009}; + auto sender = questdb::ingress::line_sender::from_conf( + "http::addr=localhost:9000;"); return 0; } ```