Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ To include it in a nodejs code isnt much harder
var MicroEvent = require('./microevent.js')
```

Now suppose you got a class `Foobar`, and you wish it to support the observer partern. do
Now suppose you got a class `Foobar`, and you wish it to support the observer pattern. do

```js
MicroEvent.mixin(Foobar)
```

That's it. The repository contains an [example in browser](https://github.com/jeromeetienne/microevent.js/blob/master/examples/example.html)
and an [example in nodejs](https://github.com/jeromeetienne/microevent.js/blob/master/examples/example.js).
Both use the same code in different contexts. Let me walk you thru it.
Both use the same code in different contexts. Let me walk you through it.

## Example

Expand Down