From 68917a161bdb0dab99d9793edb7c56e9055ad032 Mon Sep 17 00:00:00 2001 From: Andrey Stolbovsky Date: Mon, 12 Mar 2018 20:54:47 +0300 Subject: [PATCH] Fix broken links to Redux website --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e7523db..ce4e334 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Redux Thunk ============= -Thunk [middleware](http://redux.js.org/docs/advanced/Middleware.html) for Redux. +Thunk [middleware](https://redux.js.org/advanced/middleware) for Redux. [![build status](https://img.shields.io/travis/gaearon/redux-thunk/master.svg?style=flat-square)](https://travis-ci.org/gaearon/redux-thunk) [![npm version](https://img.shields.io/npm/v/redux-thunk.svg?style=flat-square)](https://www.npmjs.com/package/redux-thunk) @@ -104,7 +104,7 @@ let foo = () => 1 + 2; npm install --save redux-thunk ``` -Then, to enable Redux Thunk, use [`applyMiddleware()`](http://redux.js.org/docs/api/applyMiddleware.html): +Then, to enable Redux Thunk, use [`applyMiddleware()`](https://redux.js.org/api-reference/applymiddleware): ```js import { createStore, applyMiddleware } from 'redux';