From 8fbd0837abee075a05c0e46ca42184076acfb196 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 15 Nov 2019 13:21:00 -0800 Subject: [PATCH] Add ^:no-doc to next.jdbc.transaction In preparation for possible changes to cljdoc (so that it respects that metadata). --- src/next/jdbc/transaction.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/next/jdbc/transaction.clj b/src/next/jdbc/transaction.clj index 0c14431..cdb94fb 100644 --- a/src/next/jdbc/transaction.clj +++ b/src/next/jdbc/transaction.clj @@ -1,7 +1,7 @@ ;; copyright (c) 2018-2019 Sean Corfield, all rights reserved -(ns next.jdbc.transaction - "SQL Transaction logic." +(ns ^:no-doc next.jdbc.transaction + "Implementation of SQL transaction logic." (:require [next.jdbc.protocols :as p]) (:import (java.sql Connection)))