You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by sf...@apache.org on 2023/08/21 15:07:08 UTC

[superset] branch master updated: docs: fix line break in Apache Druid page (#25034)

This is an automated email from the ASF dual-hosted git repository.

sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e56871fd9 docs: fix line break in Apache Druid page (#25034)
5e56871fd9 is described below

commit 5e56871fd99bd2738245c14ab952d7eab646fcdf
Author: Giulio Talarico <62...@users.noreply.github.com>
AuthorDate: Mon Aug 21 17:07:01 2023 +0200

    docs: fix line break in Apache Druid page (#25034)
---
 docs/docs/databases/druid.mdx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/docs/databases/druid.mdx b/docs/docs/databases/druid.mdx
index 95e9bbc15a..18b8fa5dd0 100644
--- a/docs/docs/databases/druid.mdx
+++ b/docs/docs/databases/druid.mdx
@@ -10,7 +10,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl";
 ## Apache Druid
 
 A native connector to Druid ships with Superset (behind the `DRUID_IS_ACTIVE` flag) but this is
-slowly getting deprecated in favor of SQLAlchemy / DBAPI connector made available in the
+slowly getting deprecated in favor of the SQLAlchemy / DBAPI connector made available in the
 [pydruid library](https://pythonhosted.org/pydruid/).
 
 The connection string looks like:
@@ -20,10 +20,10 @@ druid://<User>:<password>@<Host>:<Port-default-9088>/druid/v2/sql
 ```
 Here's a breakdown of the key components of this connection string:
 
-User: username portion of the credentials needed to connect to your database
-Password: password portion of the credentials needed to connect to your database
-Host: IP address (or URL) of the host machine that's running your database
-Port: specific port that's exposed on your host machine where your database is running
+- `User`: username portion of the credentials needed to connect to your database
+- `Password`: password portion of the credentials needed to connect to your database
+- `Host`: IP address (or URL) of the host machine that's running your database
+- `Port`: specific port that's exposed on your host machine where your database is running
 
 ### Customizing Druid Connection