Skip to content

Commit 224aef7

Browse files
committed
Merge pull request reduxjs#269 from chentsulin/patch-1
Remove extra 'a' in doc
2 parents 2afae08 + a6f16ee commit 224aef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Here's an example action which represents adding a new todo item:
2121
}
2222
```
2323

24-
Actions are plain JavaScript objects. By convention, actions should a have a `type` field that indicates the type of action being performed. Types should typically be defined as constants and imported from another module.
24+
Actions are plain JavaScript objects. By convention, actions should have a `type` field that indicates the type of action being performed. Types should typically be defined as constants and imported from another module.
2525

2626
```js
2727
import { ADD_TODO, REMOVE_TODO } from '../actionTypes';

0 commit comments

Comments
 (0)