From ce902e1963a7c90f3cd0f931b09c8eee2a653d88 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Mon, 27 Apr 2020 13:25:02 -0700 Subject: [PATCH] Make br tags self-closing (#7275) --- docs/charts/area.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/charts/area.md b/docs/charts/area.md index d18f6bdb8..02a4c7cad 100644 --- a/docs/charts/area.md +++ b/docs/charts/area.md @@ -13,9 +13,9 @@ Both [line](line.md) and [radar](radar.md) charts support a `fill` option on the | Boundary 2 | `string` | `'start'`, `'end'`, `'origin'` | | Disabled 3 | `boolean` | `false` | -> 1 dataset filling modes have been introduced in version 2.6.0
-> 2 prior version 2.6.0, boundary values was `'zero'`, `'top'`, `'bottom'` (deprecated)
-> 3 for backward compatibility, `fill: true` (default) is equivalent to `fill: 'origin'`
+> 1 dataset filling modes have been introduced in version 2.6.0
+> 2 prior version 2.6.0, boundary values was `'zero'`, `'top'`, `'bottom'` (deprecated)
+> 3 for backward compatibility, `fill: true` (default) is equivalent to `fill: 'origin'`
**Example** ```javascript -- 2.47.2