Skip to content

Commit

Permalink
Readme files includes invalid paren
Browse files Browse the repository at this point in the history
  • Loading branch information
esehara committed Dec 1, 2013
1 parent 7076e5a commit 6057875
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ as their first argument.
;; Instantiate a UrlLike instance
(url-like (URL. "http://clojure.org"))
(url-like (URI. "http://clojure.org"))
(url-like "http://clojure.org"))
(url-like "http://clojure.org")

;; unline java.net.URI, valid Internet domain names like "clojure.org" and "amazon.co.uk"
;; will be recognized as hostname, not paths
(url-like "clojure.org"))
(url-like "amazon.co.uk"))
(url-like "clojure.org")
(url-like "amazon.co.uk")


;; accessing parts of the URL
Expand Down

0 comments on commit 6057875

Please sign in to comment.