From 6c5c4b2b179d7a4960ae74e5e540b763e8269b98 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 5 Jul 2022 19:02:20 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - bqplot/interacts.py - bqplot/market_map.py - bqplot/marks.py Fixes: - Should read `tooltip` rather than `tootip`. - Should read `representing` rather than `represetning`. - Should read `interpolation` rather than `interpolatoin`. --- bqplot/interacts.py | 2 +- bqplot/market_map.py | 2 +- bqplot/marks.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bqplot/interacts.py b/bqplot/interacts.py index c9e63ecb7..0c6182961 100644 --- a/bqplot/interacts.py +++ b/bqplot/interacts.py @@ -303,7 +303,7 @@ class IndexSelector(OneDSelector): color: Color or None (default: None) Color of the line representing the index selector. line_width: nonnegative integer (default: 0) - Width of the line represetning the index selector. + Width of the line representing the index selector. """ selected = Array(None, allow_none=True)\ .tag(sync=True, **array_serialization) diff --git a/bqplot/market_map.py b/bqplot/market_map.py index 9b489febb..2bc2ec6df 100644 --- a/bqplot/market_map.py +++ b/bqplot/market_map.py @@ -81,7 +81,7 @@ class MarketMap(DOMWidget): formats for each of the fields for the tooltip data. Order should match the order of the tooltip_fields freeze_tooltip_location: bool (default: False) - if True, freezes the location of the tooltip. If False, tootip will + if True, freezes the location of the tooltip. If False, tooltip will follow the mouse show_groups: bool attribute to determine if the groups should be displayed. If set to diff --git a/bqplot/marks.py b/bqplot/marks.py index 8ff324527..b3533949c 100644 --- a/bqplot/marks.py +++ b/bqplot/marks.py @@ -394,7 +394,7 @@ class Lines(Mark): line_style = Enum(['solid', 'dashed', 'dotted', 'dash_dotted'], default_value='solid')\ .tag(sync=True, display_name='Line style') - # TODO: Only Lines have interpolatoin but we can extend for other types of graphs + # TODO: Only Lines have interpolation but we can extend for other types of graphs interpolation = Enum(['linear', 'basis', 'basis-open', 'basis-closed', 'bundle', 'cardinal', 'cardinal-open',