diff options
Diffstat (limited to 'lisp/org/ob-sql.el')
-rw-r--r-- | lisp/org/ob-sql.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org/ob-sql.el b/lisp/org/ob-sql.el index 7c359b988d3..30d352cf494 100644 --- a/lisp/org/ob-sql.el +++ b/lisp/org/ob-sql.el @@ -164,7 +164,8 @@ SQL Server on Windows and Linux platform." " ")) (defun org-babel-sql-dbstring-vertica (host port user password database) - "Make Vertica command line args for database connection. Pass nil to omit that arg." + "Make Vertica command line args for database connection. +Pass nil to omit that arg." (mapconcat #'identity (delq nil (list (when host (format "-h %s" host)) |