From 19b334feed0bf41d14cf5967bc4825ef335b3f63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= Date: Tue, 30 Jul 2024 14:33:59 +0200 Subject: [PATCH] Fix documentation --- Scripts/o2_linter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/o2_linter.py b/Scripts/o2_linter.py index 70ffc120cbd..5016e669d6d 100644 --- a/Scripts/o2_linter.py +++ b/Scripts/o2_linter.py @@ -302,7 +302,7 @@ def test_line(self, line: str) -> bool: class TestROOT(TestSpec): - """Detect use of unnecessary ROOT entities.""" + """Detect unnecessary use of ROOT entities.""" name = "root-entity" message = "Consider replacing ROOT entities with STD C++ or O2 entities." @@ -357,7 +357,7 @@ def test_line(self, line: str) -> bool: class TestPiMultipleFraction(TestSpec): - """Detect multiplying/dividing of pi for existing equivalent constants.""" + """Detect multiples/fractions of pi for existing equivalent constants.""" name = "pi-multiple-fraction" message = "Consider using multiples/fractions of PI defined in o2::constants::math."