Skip to content

Commit 32d2118

Browse files
committed
update links
1 parent 8440b50 commit 32d2118

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

09_middleware.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function discardMiddleware ({ dispatch, getState }) {
161161
// const finalCreateStore = applyMiddleware(discardMiddleware, thunkMiddleware)(createStore)
162162
// should make your actions never reach your thunkMiddleware and even less your reducers.
163163

164-
// See http://rackt.org/redux/docs/introduction/Ecosystem.html, section Middleware, to
164+
// See http://redux.js.org/docs/introduction/Ecosystem.html#middleware, section Middleware, to
165165
// see other middleware examples.
166166

167167
// Let's sum up what we've learned so far:

11_src/src/application.jsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
// Tutorial 12 - Provider-and-connect.js
22

3-
// Now is the time to meet the first binding that redux-react (https://github.com/rackt/react-redux)
3+
// Now is the time to meet the first binding that redux-react (https://github.com/reactjs/react-redux)
44
// brings to us: the Provider component.
55

66
// Provider is a React Component designed to be used as a wrapper of your application's root component. Its
7-
// purpose is to provide your redux instance to all of your application's components. How it does that does not
8-
// really matter to us but just to let you know, it's using React's context feature (it's undocumented so you
9-
// don't have to know about it, but if you're curious:
10-
// https://www.tildedave.com/2014/11/15/introduction-to-contexts-in-react-js.html).
7+
// purpose is to provide your Redux instance to all of your application's components. Documentation is here:
8+
// https://github.com/reactjs/react-redux/blob/3.x/docs/api.md#provider-store
119

1210
import React from 'react'
1311
import Home from './home'

12_final-words.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
// There is actually more to Redux and react-redux than what we showed you with this tutorial. For example,
44
// concerning Redux, you may be interested in bindActionCreators (to produce a hash of action creators
5-
// already bound to dispatch - http://rackt.org/redux/docs/api/bindActionCreators.html).
5+
// already bound to dispatch - http://redux.js.org/docs/api/bindActionCreators.html).
66

77
// We hope we've given you the keys to better understand Flux and to see more clearly
88
// how Flux implementations differ from one another - especially how Redux stands out ;).
99

1010
// Where to go from here?
1111

1212
// The official Redux documentation is really awesome and exhaustive so you should not hesitate to
13-
// refer to it from now on: http://rackt.org/redux/index.html
13+
// refer to it from now on: http://redux.js.org/
1414

1515
// Have fun with React and Redux!

0 commit comments

Comments
 (0)