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

ianmcook pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 0f81654a8 docs: fix minor issues in profiles and manifests docs (#4007)
0f81654a8 is described below

commit 0f81654a872fb9baa5432296c9d67ddef1b43b28
Author: Ian Cook <[email protected]>
AuthorDate: Thu Feb 26 07:20:00 2026 -0500

    docs: fix minor issues in profiles and manifests docs (#4007)
---
 docs/source/format/connection_profiles.rst | 7 +++++--
 docs/source/format/driver_manifests.rst    | 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/docs/source/format/connection_profiles.rst 
b/docs/source/format/connection_profiles.rst
index cf3ae87f2..228ff448b 100644
--- a/docs/source/format/connection_profiles.rst
+++ b/docs/source/format/connection_profiles.rst
@@ -193,9 +193,12 @@ When using a profile name (not an absolute path), the 
driver manager searches fo
 1. **Additional Search Paths** (if configured via 
``AdbcDriverManagerDatabaseSetAdditionalSearchPathList()``)
 2. **ADBC_PROFILE_PATH** environment variable (colon-separated on Unix, 
semicolon-separated on Windows)
 3. **Conda Environment** (if built with Conda support and ``CONDA_PREFIX`` is 
set):
+
    - ``$CONDA_PREFIX/etc/adbc/profiles/``
+
 4. **User Configuration Directory**:
-   - Linux: ``~/.config/adbc/profiles/``
+
+   - Linux: ``$XDG_CONFIG_HOME/adbc/profiles`` if set, else 
``~/.config/adbc/profiles/``
    - macOS: ``~/Library/Application Support/ADBC/Profiles/``
    - Windows: ``%LOCALAPPDATA%\ADBC\Profiles\``
 
@@ -433,7 +436,7 @@ Store credentials separately from code:
 
    [options]
    adbc.snowflake.sql.account = "mycompany"
-   adbc.snowflake.sql.auth_token = "env_var(SNOWFLAKE_TOKEN)"
+   adbc.snowflake.sql.auth_token = "{{ env_var(SNOWFLAKE_TOKEN) }}"
 
 Then set ``SNOWFLAKE_TOKEN`` via environment variable, secrets manager, or 
configuration service.
 
diff --git a/docs/source/format/driver_manifests.rst 
b/docs/source/format/driver_manifests.rst
index 1a48060a8..1d4896298 100644
--- a/docs/source/format/driver_manifests.rst
+++ b/docs/source/format/driver_manifests.rst
@@ -499,7 +499,7 @@ would happen for ODBC drivers. The search for a manifest on 
Windows would be the
      * ``entrypoint`` - the entrypoint to use for the driver if a non-default 
entrypoint is needed
      * ``driver`` - the path to the driver shared library
 
-   * If no registry key is found, then the directory 
``%LOCAL_APPDATA%\ADBC\Drivers`` is searched
+   * If no registry key is found, then the directory 
``%LOCALAPPDATA%\ADBC\Drivers`` is searched
 
 #. If the ``LOAD_FLAG_SEARCH_SYSTEM`` load option is set, the driver manager 
will search for a system-level configuration
 

Reply via email to