From 09c0c3e27d7ef4fbd511d9d91cffb616b22acdf7 Mon Sep 17 00:00:00 2001 From: Jerry Chang Date: Sun, 14 Jan 2018 13:21:41 -0800 Subject: [PATCH] Fix text cut off in documentation link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 39b03f5..0d793c8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ var MyComponent = React.createClass({ }); ``` -* ```data``` represents the chart data (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) +* ```data``` represents the chart data (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details) * ```options``` represents the chart options (see [chart.js](https://github.com/chartjs/Chart.js/tree/v1.1.1/docs) for details) * all other parameters will be passed through to the ```canvas``` element * if data passed into the component changes, points will animate between values using chart.js' ```.update()```. If you want the chart destroyed and redrawn on every change, pass in ```redraw``` as a prop. For example ``````