From b81c7f55ec88deca69dc86fe8ed6d58323dc8d6d Mon Sep 17 00:00:00 2001 From: Paul Geraghty Date: Sun, 30 Jan 2022 09:44:27 +0100 Subject: [PATCH] Fix typos (#955) --- lib/livebook/notebook/explore/intro_to_vega_lite.livemd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/livebook/notebook/explore/intro_to_vega_lite.livemd b/lib/livebook/notebook/explore/intro_to_vega_lite.livemd index e5bc32a1d..1fdd8b3a9 100644 --- a/lib/livebook/notebook/explore/intro_to_vega_lite.livemd +++ b/lib/livebook/notebook/explore/intro_to_vega_lite.livemd @@ -77,7 +77,7 @@ Vl.new(width: 400, height: 300) ### Stacked bar chart A stacked bar chart contains multi-color bars to represent -several quantitive values at once. +several quantitative values at once. ```elixir # Source: https://vega.github.io/vega-lite/examples/stacked_bar_weather.html @@ -376,7 +376,7 @@ Vl.new(width: 400, height: 300) ### Streamgraph -A streamgraph is a type of area chart which is displaced around a centerl axis. +A streamgraph is a type of area chart which is displaced around a central axis. ```elixir Vl.new(width: 400, height: 300) @@ -564,7 +564,7 @@ Vl.new(width: 400, height: 300) ### Trellis bar chart Trellis display is a series of graphs with the same scale and axes -split according to some criteria, so that they are easily to compare. +split according to some criteria, so that they are easy to compare. ```elixir # Source: https://vega.github.io/vega-lite/examples/trellis_bar.html