From b6842a94e5753c0d85aaf643954470ac8c805b61 Mon Sep 17 00:00:00 2001 From: RamiR Date: Fri, 6 Feb 2026 01:16:51 -0600 Subject: [PATCH] docs: fix typos in figure_factory (seperate -> separate) Fix spelling errors: - 'seperated' -> 'separated' in utils.py - 'seperate' -> 'separate' in _facet_grid.py --- plotly/figure_factory/_facet_grid.py | 2 +- plotly/figure_factory/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/figure_factory/_facet_grid.py b/plotly/figure_factory/_facet_grid.py index 06dc71d2ac3..3dc62ebe2ee 100644 --- a/plotly/figure_factory/_facet_grid.py +++ b/plotly/figure_factory/_facet_grid.py @@ -819,7 +819,7 @@ def create_facet_grid( else: SUBPLOT_SPACING = 0.015 - # seperate kwargs for marker and else + # separate kwargs for marker and else if "marker" in kwargs: kwargs_marker = kwargs["marker"] else: diff --git a/plotly/figure_factory/utils.py b/plotly/figure_factory/utils.py index e20a319af13..72f5bff1c5c 100644 --- a/plotly/figure_factory/utils.py +++ b/plotly/figure_factory/utils.py @@ -236,7 +236,7 @@ def annotation_dict_for_label( def list_of_options(iterable, conj="and", period=True): """ - Returns an English listing of objects seperated by commas ',' + Returns an English listing of objects separated by commas ',' For example, ['foo', 'bar', 'baz'] becomes 'foo, bar and baz' if the conjunction 'and' is selected.