diff options
author | scgilardi <scgilardi@gmail.com> | 2009-05-31 15:22:00 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2009-05-31 15:22:00 +0000 |
commit | 0aea8bc4a65e9ea366078b13cf49416f8242c4c1 (patch) | |
tree | 0fba285bb6f45391e88ceaa5932996101d656320 /src | |
parent | 3e4a35afeb306dc3034b1370ffdaf159c4324bcb (diff) |
miglayout.example: fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/clojure/contrib/miglayout/example.clj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clojure/contrib/miglayout/example.clj b/src/clojure/contrib/miglayout/example.clj index b077af76..b8dad4ae 100644 --- a/src/clojure/contrib/miglayout/example.clj +++ b/src/clojure/contrib/miglayout/example.clj @@ -8,8 +8,8 @@ ;; ;; clojure.contrib.miglayout.example ;; -;; Temperature converter using miglayout. Demonstrates accessing components -;; by their id constraint. +;; A temperature converter using miglayout. Demonstrates accessing +;; components by their id constraint. ;; ;; scgilardi (gmail) ;; Created 31 May 2009 @@ -29,7 +29,7 @@ (catch NumberFormatException _ "input?"))) (defn- handle-key - "Clear output on most keys, show coversion on \"Enter\"" + "Clear output on most keys, show conversion on \"Enter\"" [event in out] (.setText out (if (= (.getKeyChar event) \newline) |