Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a88a301

Browse files
committed
Remove leading => on examples
Allow for copy/pasting into the REPL, as well as match other code excerpts in the book.
1 parent 1634755 commit a88a301

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

primitive-data/dates/current-date/current-date.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ namespace.
7070

7171
[source,clojure]
7272
----
73-
=> (require '[clj-time.core :as timec])
73+
(require '[clj-time.core :as timec])
7474
75-
user=> (timec/now)
75+
(timec/now)
7676
;; -> #<DateTime 2013-04-06T14:35:15.453Z>
7777
----
7878

@@ -82,9 +82,9 @@ timezone when using +clj-time+ that can be done with the
8282

8383
[source,clojure]
8484
----
85-
=> (require '[clj-time.local :as timel])
85+
(require '[clj-time.local :as timel])
8686
87-
user=> (timel/local-now)
87+
(timel/local-now)
8888
;; -> #<DateTime 2013-04-06T09:35:20.141-05:00>
8989
----
9090

0 commit comments

Comments
 (0)