From fd978fc197b11255b8ccbb2e22353c6d6cd33a1a Mon Sep 17 00:00:00 2001 From: Maja Kabus Date: Tue, 10 Oct 2023 11:44:03 +0200 Subject: [PATCH] Fixed missing --- docs/basics-tasks/FilteringPartitioning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics-tasks/FilteringPartitioning.md b/docs/basics-tasks/FilteringPartitioning.md index 09271cf0..265a8874 100644 --- a/docs/basics-tasks/FilteringPartitioning.md +++ b/docs/basics-tasks/FilteringPartitioning.md @@ -88,7 +88,7 @@ i.e. `Filter` is applied to the objects before passing them to the `process` met ## Filtering and partitioning together -It is also possible to filter and partition data in the same task. Therefore, multiple `Filter`s are combined using the logical `AND`. These filters then are combined by a logical `AND` with all the specified selections `Select`, which themself are combined by logical `OR`s. E.g. (Filter1 && Filter2) && (Select1 || Select2). +It is also possible to filter and partition data in the same task. Therefore, multiple `Filter`s are combined using the logical `AND`. These filters then are combined by a logical `AND` with all the specified selections `Select`, which themself are combined by logical `OR`s. E.g., `(Filter1 && Filter2) && (Select1 || Select2)`. ```cpp using namespace o2::aod;