Skip to content

Commit 1e898af

Browse files
committed
Merge pull request #339 from aparticka/patch-1
Fix links in Getting Started docs
2 parents 45a5445 + adf31a1 commit 1e898af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Basics/Getting Started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ let boundAddTodo = text => dispatch(addTodo(text));
8686
let boundRemoveTodo = id => dispatch(addTodo(id));
8787
```
8888

89-
The `dispatch()` function can be accessed directly from the store as `store.dispatch()`, but more likely you’ll access it using a helper like `connect` from [react-redux](http://github.com/gaearon/react-redux).
89+
The `dispatch()` function can be accessed directly from the store as `store.dispatch()`, but more likely you’ll access it using a helper like `connect` from [react-redux](https://github.com/gaearon/react-redux).
9090

9191
### Reducers
9292

@@ -236,7 +236,7 @@ Yes, you read that correctly. [Read more about how middleware works here.](../Re
236236

237237
You’ll rarely interact with the store object directly. Most often, you’ll use some sort of binding to your preferred view library.
238238

239-
Flux is most popular within the React community, but Redux works with any kind of view layer. The React bindings for Redux are available as [react-redux](github.com/gaearon/react-redux) — see that project for details on how to integrate with React.
239+
Flux is most popular within the React community, but Redux works with any kind of view layer. The React bindings for Redux are available as [react-redux](https://github.com/gaearon/react-redux) — see that project for details on how to integrate with React.
240240

241241
However, if you do find yourself needing to access the store directly, the API for doing so is very simple:
242242

0 commit comments

Comments
 (0)