From b10058d9da21fd66b457f557b1353c06033fddd3 Mon Sep 17 00:00:00 2001 From: Maria Grimaldi Date: Mon, 18 Nov 2024 21:21:59 +0100 Subject: [PATCH] fix: remove unnecessary math directive --- docs/concepts/openedx-filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/openedx-filters.rst b/docs/concepts/openedx-filters.rst index 20631261..2f319df8 100644 --- a/docs/concepts/openedx-filters.rst +++ b/docs/concepts/openedx-filters.rst @@ -24,7 +24,7 @@ Open edX Filters are implemented using an accumulative pipeline mechanism, which #. The ``run_filter`` method calls the **Pipeline Tooling** under the hood, which manages the execution of the filter's pipeline. -#. The filter's tooling retrieves the configuration from ``OPEN_EDX_FILTERS_CONFIG``, which defines a list of N functions :math::math:`f_1, f_2, \ldots, f_{n}` that will be executed. +#. The filter's tooling retrieves the configuration from ``OPEN_EDX_FILTERS_CONFIG``, which defines a list of N functions :math:`f_1, f_2, \ldots, f_{n}` that will be executed. #. The tooling then executes each function in the pipeline sequentially, starting with :math:`f_1`, which processes the input arguments and applies the developer's operations, returning potentially modified arguments.