Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
djui committed Oct 2, 2013
1 parent b0c6dba commit cfcad0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -67,7 +67,7 @@ You can also schedule functions to occur periodically. Here we schedule the func
(every 1000 #(println "I am cool!") my-pool)
```

This returns a shceduled-fn which may easily be stopped `stop`:
This returns a scheduled-fn which may easily be stopped `stop`:

```clj
(stop *1)
Expand All @@ -77,7 +77,7 @@ Or more forcefully killed with `kill`.

It's also possible to start a periodic repeating fn with an inital delay:

```cj
```clj
(every 1000 #(println "I am cool!") my-pool :initial-delay 2000)
```

Expand Down

0 comments on commit cfcad0c

Please sign in to comment.