Merge pull request #233 from tlewin/master

Fix a typo in the Extensibility section
This commit is contained in:
Sean Corfield 2018-12-30 18:31:43 -08:00 committed by GitHub
commit c0bdcc26b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -461,7 +461,7 @@ To teach `honeysql` how to handle your datatype you need to implement [`honeysql
;; results in => "where :some_column > ()"
;; we can teach honeysql about it:
(extend-protocol honeysql.format.ToSql
(extend-protocol honeysql.format/ToSql
MyDateWrapper
(to-sql [v] (to-sql (date/to-sql-timestamp v))))