From 531fb702adf54e2eb41f1cb07b9ceda14aa7b437 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Wed, 8 Jul 2020 22:55:06 -0700 Subject: [PATCH] Fix typo --- doc/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting-started.md b/doc/getting-started.md index 3e521cb..9295321 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -101,7 +101,7 @@ In the same way that you would use `execute-one!` if you only want one row or on All functions in `next.jdbc` (except `get-datasource`) can accept, as the optional last argument, a hash map containing a [variety of options](/doc/all-the-options.md) that control the behavior of the `next.jdbc` functions. -We saw `:return-keys` provided as an option to the `execute-one!` function above and mentioned the `:builder-fn` option just above that. As noted, the default behavior it to return rows as hash maps with namespace-qualified keywords identifying the column names with the table name as the qualifier. There's a whole chapter on [result set builders](/doc/result-set-builders.md) but here's a quick example showing how to get unqualified, lower case keywords instead: +We saw `:return-keys` provided as an option to the `execute-one!` function above and mentioned the `:builder-fn` option just above that. As noted, the default behavior is to return rows as hash maps with namespace-qualified keywords identifying the column names with the table name as the qualifier. There's a whole chapter on [result set builders](/doc/result-set-builders.md) but here's a quick example showing how to get unqualified, lower case keywords instead: ```clojure user=> (require '[next.jdbc.result-set :as rs])