From 342c12fafa52882f18793f33d44a441d38a44774 Mon Sep 17 00:00:00 2001 From: Will Schlitzer Date: Tue, 3 Mar 2026 20:58:55 -0500 Subject: [PATCH] Fix typo in documentation comment Remove duplicate "with" --- examples/intro/04_table_inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/intro/04_table_inputs.py b/examples/intro/04_table_inputs.py index 7ff168b41e8..52c4a80fced 100644 --- a/examples/intro/04_table_inputs.py +++ b/examples/intro/04_table_inputs.py @@ -68,7 +68,7 @@ # The ``data`` parameter also accepts a 2-D array, e.g., # # - A 2-D :class:`list` (i.e., a list of lists) -# - A :class:`numpy.ndarray` object with with a dimension of 2 +# - A :class:`numpy.ndarray` object with a dimension of 2 # - A :class:`pandas.DataFrame` object # # This is useful when you want to plot data that is already in memory.