If this is the incorrect forum to post this please point me in the
correct direction...

On http://clojure.org/jvm_hosted

The celsius defn has a doto with incorrect syntax.  Shouldn't

(doto frame
               (setLayout (new GridLayout 2 2 3 3))
               ...)
be

(doto frame
               (.setLayout (new GridLayout 2 2 3 3))
               ...)

Note the missing dot in the former setLayout. I'm new to clojure, so I
may well not understand something.

--Jonathan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to