Skip to content
This repository has been archived by the owner on May 14, 2020. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AKST committed Jun 30, 2015
1 parent 137a4cd commit bae22e2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ lein figwheel

A clojure repl will appear, run `(in-ns 'svg-thing.core)` to go into the appropiate namespace, then you can change the light and temperature like so.

```
> (swap! app-state assoc-in [:light :explict] 0)
> (swap! app-state assoc-in [:light :explict] 100)
> (swap! app-state assoc-in [:temp :explict] 20)
> (swap! app-state assoc-in [:temp :explict] 60)
```clojure
(swap! app-state assoc-in [:light :explict] 0)
(swap! app-state assoc-in [:light :explict] 100)
(swap! app-state assoc-in [:temp :explict] 20)
(swap! app-state assoc-in [:temp :explict] 60)
```

0 comments on commit bae22e2

Please sign in to comment.