From ad84d23a02550663a10502cdec148e126935f795 Mon Sep 17 00:00:00 2001 From: Homer Chen Date: Fri, 2 Nov 2018 22:21:34 +1100 Subject: [PATCH] Add a space on README (#5574) Hi Just add a space on README. That line should be same as [here](https://github.com/zeit/next.js/blob/canary/examples/using-with-router/components/ActiveLink.js#L10) --- packages/next/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next/README.md b/packages/next/README.md index 2b639371d7..ac29b92558 100644 --- a/packages/next/README.md +++ b/packages/next/README.md @@ -676,7 +676,7 @@ import { withRouter } from 'next/router' const ActiveLink = ({ children, router, href }) => { const style = { marginRight: 10, - color: router.pathname === href? 'red' : 'black' + color: router.pathname === href ? 'red' : 'black' } const handleClick = (e) => {