fix links

This commit is contained in:
Gered 2016-06-04 15:17:25 -04:00
parent bd0b14f475
commit cde298a899

View file

@ -89,7 +89,7 @@ which are provided during view subscription:
### Extra Features and Options
You can use clojure.java.jdbc's `:row-fn` and `:result-set-fn` (see
[here][4] and [here][5] for more info on what these options are) with
[here][6] and [here][7] for more info on what these options are) with
HoneySQL views:
```clj
@ -97,8 +97,8 @@ HoneySQL views:
:result-set-fn my-result-set-fn})
```
[4]: http://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql.html#processing-each-row-lazily
[5]: http://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql.html#processing-a-result-set-lazily
[6]: http://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql.html#processing-each-row-lazily
[7]: http://clojure-doc.org/articles/ecosystem/java_jdbc/using_sql.html#processing-a-result-set-lazily
Additionally the `db` argument can be a function that accepts a
namespace and returns a standard database connection map.
@ -211,11 +211,11 @@ need them, and this shouldn't be a problem when it comes time to parsing
the HoneySQL map to get the hints from it.
> Hints generated by views.honeysql are compatible with the hints
> generated by [views.sql][6], so you can easily mix-and-match these
> generated by [views.sql][8], so you can easily mix-and-match these
> views within the same system and get view refreshes triggered as you
> would expect for both types of views.
[6]: https://github.com/gered/views.sql
[8]: https://github.com/gered/views.sql
## License