From 35baac871d66160c572182e3b667589e3f62aa12 Mon Sep 17 00:00:00 2001 From: Adam Cimarosti Date: Tue, 19 Mar 2024 17:06:19 +0000 Subject: [PATCH] doc: code example tweak --- doc/DEPENDENCY.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } ```