-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes in example ns according to issue #64 #65
Conversation
I'm OK with the change, but let's see what others think as well. |
I haven't seen the short form used anywhere and |
https://github.com/ptaoussanis/carmine/blob/master/src/taoensso/carmine/connections.clj Here is short form in action. People use it not very often, but I think we still should mention it. |
@michaelklishin I updated my commit, fixed weird situation with |
If we go this direction, I agree with @michaelklishin and would recommend only the long form. This has the added benefits of working in Clojurescript (the short form does not IIRC) and has the least overhead to understand. |
I didn't thought about ClojureScript version before. Good point, thanks, On Sun, 2013-08-18 at 08:40 -0700, ToBeReplaced wrote:
Regards, |
So what now? Should it be merged/rejected? Any changes required? |
LGTM now. |
Yep, LGTM too. Just squash the two commits into one. |
According to conversation in issue bbatsov#64 there is better to use [] in ns declaration after special forms (:require, :use) since it's clearly describes data. I think same can be applied to :import and any other form in ns macro.
Done. On Sat, 2013-08-24 at 11:56 -0700, Bozhidar Batsov wrote:
Regards, |
Changes in example ns according to issue #64
According to conversation in issue #64 there is better to use [] in ns declaration after
special forms (:require, :use) since it's clearly describes data. I think same can be
applied to :import and any other form in ns macro.