Skip to content

Commit 57a76a3

Browse files
committed
fix README version
1 parent d615089 commit 57a76a3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ Rum:
7676

7777
## Using Rum
7878

79-
Add to project.clj: `[rum "0.11.2"]`
79+
Add to project.clj: `[rum "0.11.3"]`
8080

8181
### API Docs
8282

83-
[![cljdoc badge](https://cljdoc.xyz/badge/rum/rum)](https://cljdoc.xyz/d/rum/rum/CURRENT)
83+
[![cljdoc badge](https://cljdoc.org/badge/rum/rum)](https://cljdoc.org/d/rum/rum/CURRENT)
8484

8585
### Defining a component
8686

@@ -532,7 +532,7 @@ To define child context
532532

533533
If used from clj/cljc, Rum works as a traditional template engine à la Hiccup:
534534

535-
1. Rum’s `project.clj` dependency becomes `[rum "0.11.2" :exclusions [cljsjs/react cljsjs/react-dom sablono]`
535+
1. Rum’s `project.clj` dependency becomes `[rum "0.11.3" :exclusions [cljsjs/react cljsjs/react-dom sablono]`
536536
2. Import `rum.core` as usual.
537537
3. Define components using `rum/defc` or other macros as usual.
538538
4. Instead of mounting, call `rum/render-html` to render into a string.

src/rum/core.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@
412412
(fn [a b]
413413
(str a \":\" b))))
414414
415-
(type *x) ;; => clojure.lang.Atom
415+
(type *x) ;; => clojure.lang.Atom
416416
(deref *x) ;; => \"0:1\"
417417
418418
(swap! *a inc)

0 commit comments

Comments
 (0)