@@ -190,7 +190,7 @@ def make_subplots(
190
190
in fraction of cell height ('to_end': to cell top edge)
191
191
192
192
column_widths: list of numbers or None (default None)
193
- list of length `cols` of the relative widths of each column of suplots .
193
+ list of length `cols` of the relative widths of each column of subplots .
194
194
Values are normalized internally and used to distribute overall width
195
195
of the figure (excluding padding) among the columns.
196
196
@@ -358,7 +358,7 @@ def make_subplots(
358
358
if not isinstance (rows , int ) or rows <= 0 :
359
359
raise ValueError (
360
360
"""
361
- The 'rows' argument to make_suplots must be an int greater than 0.
361
+ The 'rows' argument to make_subplots must be an int greater than 0.
362
362
Received value of type {typ}: {val}""" .format (
363
363
typ = type (rows ), val = repr (rows )
364
364
)
@@ -368,7 +368,7 @@ def make_subplots(
368
368
if not isinstance (cols , int ) or cols <= 0 :
369
369
raise ValueError (
370
370
"""
371
- The 'cols' argument to make_suplots must be an int greater than 0.
371
+ The 'cols' argument to make_subplots must be an int greater than 0.
372
372
Received value of type {typ}: {val}""" .format (
373
373
typ = type (cols ), val = repr (cols )
374
374
)
@@ -399,7 +399,7 @@ def _checks(item, defaults):
399
399
if not isinstance (item , dict ):
400
400
raise ValueError (
401
401
"""
402
- Elements of the '{name}' argument to make_suplots must be dictionaries \
402
+ Elements of the '{name}' argument to make_subplots must be dictionaries \
403
403
or None.
404
404
Received value of type {typ}: {val}""" .format (
405
405
name = name , typ = type (item ), val = repr (item )
@@ -484,7 +484,7 @@ def _checks(item, defaults):
484
484
):
485
485
raise ValueError (
486
486
"""
487
- The 'insets' argument to make_suplots must be a list of dictionaries.
487
+ The 'insets' argument to make_subplots must be a list of dictionaries.
488
488
Received value of type {typ}: {val}""" .format (
489
489
typ = type (insets ), val = repr (insets )
490
490
)
@@ -587,7 +587,7 @@ def _check_hv_spacing(dimsize, spacing, name, dimvarname, dimname):
587
587
else :
588
588
raise ValueError (
589
589
"""
590
- The 'column_widths' argument to make_suplots must be a list of numbers of \
590
+ The 'column_widths' argument to make_subplots must be a list of numbers of \
591
591
length {cols}.
592
592
Received value of type {typ}: {val}""" .format (
593
593
cols = cols , typ = type (column_widths ), val = repr (column_widths )
@@ -607,7 +607,7 @@ def _check_hv_spacing(dimsize, spacing, name, dimvarname, dimname):
607
607
else :
608
608
raise ValueError (
609
609
"""
610
- The 'row_heights' argument to make_suplots must be a list of numbers of \
610
+ The 'row_heights' argument to make_subplots must be a list of numbers of \
611
611
length {rows}.
612
612
Received value of type {typ}: {val}""" .format (
613
613
rows = rows , typ = type (row_heights ), val = repr (row_heights )
0 commit comments