From 14a30b6e22727069791c562fd5adc1a22194139e Mon Sep 17 00:00:00 2001 From: Timon Erhart <57718207+turbotimon@users.noreply.github.com> Date: Thu, 21 Nov 2024 15:24:34 +0100 Subject: [PATCH] minor spell fix (#2601) --- examples/02-data-processing.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/02-data-processing.ipynb b/examples/02-data-processing.ipynb index 89e81b0f03..01d0a44330 100644 --- a/examples/02-data-processing.ipynb +++ b/examples/02-data-processing.ipynb @@ -19,7 +19,7 @@ "\n", "`DataTransformer` aims to provide a unified way of dealing with transformations of `TimeSeries`:\n", "\n", - "- `transform()` is implemented by all transformers. This method takes in either a `TimeSeries` of a sequence of `TimeSeries`, applies the transformation and returns it as a new `TimeSeries`/sequence of `TimeSeries.\n", + "- `transform()` is implemented by all transformers. This method takes in either a `TimeSeries` or a sequence of `TimeSeries`, applies the transformation and returns it as a new `TimeSeries`/sequence of `TimeSeries.\n", "- `inverse_transform()` is implemented by transformers for which an inverse transformation function exists. It works in a similar way as `transform()`\n", "- `fit()` allows transformers to extract some information from the time series first before calling `transform()` or `inverse_transform()`\n" ]