Skip to content

Commit

Permalink
docs: fix capitalization in actions guide (#2439)
Browse files Browse the repository at this point in the history
  • Loading branch information
treebeardcpu authored Mar 17, 2020
1 parent 3e55dd5 commit 7598dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngrx.io/content/guide/store/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface Action {

The interface has a single property, the `type`, represented as a string. The `type` property is for describing the action that will be dispatched in your application. The value of the type comes in the form of `[Source] Event` and is used to provide a context of what category of action it is, and where an action was dispatched from. You add properties to an action to provide additional context or metadata for an action.

Listed below are examples of actions written as plain javascript objects (POJOS):
Listed below are examples of actions written as plain old JavaScript objects (POJOs):

```json
{
Expand Down

0 comments on commit 7598dc3

Please sign in to comment.