From 5711aed7eb0aca8f9ed0ebda234f244c7fd6de64 Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Mon, 18 Jan 2021 02:42:12 +0100 Subject: [PATCH] fix docs --- doc/ruleSets/PSR12.rst | 2 +- doc/ruleSets/PSR12Risky.rst | 2 +- src/RuleSet/Sets/PSR12Set.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/ruleSets/PSR12.rst b/doc/ruleSets/PSR12.rst index e441836ec09..e57218e7d59 100644 --- a/doc/ruleSets/PSR12.rst +++ b/doc/ruleSets/PSR12.rst @@ -2,7 +2,7 @@ Rule set ``@PSR12`` =================== -Rules that follow `PSR-2 `_ standard. +Rules that follow `PSR-12 `_ standard. Rules ----- diff --git a/doc/ruleSets/PSR12Risky.rst b/doc/ruleSets/PSR12Risky.rst index add9a0b6cd5..efb816555a0 100644 --- a/doc/ruleSets/PSR12Risky.rst +++ b/doc/ruleSets/PSR12Risky.rst @@ -2,7 +2,7 @@ Rule set ``@PSR12:risky`` ========================= -Rules that follow `PSR-2 `_ standard. This set contains rules that are risky. +Rules that follow `PSR-12 `_ standard. This set contains rules that are risky. Rules ----- diff --git a/src/RuleSet/Sets/PSR12Set.php b/src/RuleSet/Sets/PSR12Set.php index 7f77d6c1ec6..09d811e76eb 100644 --- a/src/RuleSet/Sets/PSR12Set.php +++ b/src/RuleSet/Sets/PSR12Set.php @@ -65,6 +65,6 @@ public function getRules() public function getDescription() { - return 'Rules that follow `PSR-2 `_ standard.'; + return 'Rules that follow `PSR-12 `_ standard.'; } }