Skip to content

Commit 78437a0

Browse files
Fix typo
1 parent 806f134 commit 78437a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ textElement.addEventListener('input', () => {
7777

7878
// Dispatch the action, which will subsequently pass this message to the mutation
7979
// which in turn, updates the store's state
80-
storeInstance.dispatch('saySomething', textElement.valuei.trim());
80+
storeInstance.dispatch('saySomething', textElement.value.trim());
8181
});
8282
```
8383

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "beedle",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Beedle is a tiny little library to help you manage state across your application. Inspired by great libraries like Vuex and Redux, Beedle creates a central store that enables you to both better control and cascade state across your application.",
55
"main": "dist/beedle.js",
66
"scripts": {

0 commit comments

Comments
 (0)