From d5aa50ffeb75f1c45f77f5784457d08261f00d28 Mon Sep 17 00:00:00 2001 From: Danilo Piparo <danilo.piparo@cern.ch> Date: Wed, 5 Dec 2018 15:36:23 +0100 Subject: [PATCH] [TTreeProcessorMT][NFC] Correct typo in Process method documentation --- tree/treeplayer/src/TTreeProcessorMT.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tree/treeplayer/src/TTreeProcessorMT.cxx b/tree/treeplayer/src/TTreeProcessorMT.cxx index 555dffe2f0b..97ecf117f8e 100644 --- a/tree/treeplayer/src/TTreeProcessorMT.cxx +++ b/tree/treeplayer/src/TTreeProcessorMT.cxx @@ -284,7 +284,7 @@ TTreeProcessorMT::TTreeProcessorMT(TTree &tree) : TTreeProcessorMT(tree, TEntryL /// ~~~{.cpp} /// TTreeProcessorMT::Process([](TTreeReader& readerSubRange) { /// // Select branches to read -/// while (readerSubRange.next()) { +/// while (readerSubRange.Next()) { /// // Use content of current entry /// } /// }); -- GitLab