From 7dac420e29d0c32b8dbf267ad08fc4b5c5d798d0 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Fri, 25 Oct 2024 14:58:02 -0400 Subject: [PATCH] docs(druid): fix connect kwarg example (#10372) ## Description of changes Fix the incorrect kwarg in the docs for connecting to Druid ## Issues closed Resolves #10368 --- docs/backends/druid.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backends/druid.qmd b/docs/backends/druid.qmd index 6c414f0a38e1..0b155b2eee76 100644 --- a/docs/backends/druid.qmd +++ b/docs/backends/druid.qmd @@ -74,7 +74,7 @@ con = ibis.druid.connect() # <1> con = ibis.druid.connect( host="hostname", port=8082, - database="druid/v2/sql", + path="druid/v2/sql", ) ```