Skip to content

Commit

Permalink
fixes #76 correcting typos and grammar errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Turner committed Apr 26, 2017
1 parent 87eb173 commit 9d8e5dd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0",
"web-component-tester": "^4.0.0",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
"vaadin-combo-box": "^1.3.3"
}
}
6 changes: 3 additions & 3 deletions demo/ready-state.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ <h3>Polymer Redux, Ready State</h3>
<script>
const initialState = {
friends: ['Adam', 'Beth', 'Carl', 'Denise'],
choosenFriend: 'Beth',
chosenFriend: 'Beth',
};
const reducer = (state, action) => {
if (!state) return initialState;

switch (action.type) {
case 'CHOOSE_FRIEND':
return Object.assign({}, state, {
chooseFriend: action.friend
chosenFriend: action.friend
});
}

Expand Down Expand Up @@ -68,7 +68,7 @@ <h3>Choose a Friend:</h3>
},
friend: {
type: String,
statePath: 'chooseFriend'
statePath: 'chosenFriend'
}
},
actions: {
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5124,9 +5124,9 @@ ternary-stream@^2.0.1:
merge-stream "^1.0.0"
through2 "^2.0.1"

"test-fixture@github:polymerelements/test-fixture":
test-fixture@PolymerElements/test-fixture:
version "3.0.0-rc.1"
resolved "https://codeload.github.com/polymerelements/test-fixture/tar.gz/26118ef0467501c33c02316e7016a2837baba10f"
resolved "https://codeload.github.com/PolymerElements/test-fixture/tar.gz/26118ef0467501c33c02316e7016a2837baba10f"

test-value@^1.1.0:
version "1.1.0"
Expand Down

0 comments on commit 9d8e5dd

Please sign in to comment.