From 0997cf71ccd711afe956d0d40e1a7053d698fff2 Mon Sep 17 00:00:00 2001 From: Zach Panzarino Date: Tue, 31 May 2016 17:50:02 +0000 Subject: [PATCH] Fix doc syntax (#2673) --- docs/02-Scales.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/02-Scales.md b/docs/02-Scales.md index 73ff651c3..83e52d49e 100644 --- a/docs/02-Scales.md +++ b/docs/02-Scales.md @@ -190,14 +190,16 @@ var chartInstance = new Chart(ctx, { type: 'line', data: data, options: { - xAxes: [{ - type: 'logarithmic', - position: 'bottom', - ticks: { - min: 1, - max: 1000 - } - }] + scales: { + xAxes: [{ + type: 'logarithmic', + position: 'bottom', + ticks: { + min: 1, + max: 1000 + } + }] + } } }) ``` -- 2.47.2