Browse Source

docs: fix unconsistency in config doc (#8269)

Matthieu Lempereur 4 months ago
parent
commit
c818a8e4c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/config.rst

+ 1 - 1
doc/config.rst

@@ -114,7 +114,7 @@ The following example shows how to use all ``PhpCsFixer`` rules but without the
     return (new PhpCsFixer\Config())
         ->setRules([
             '@PhpCsFixer' => true,
-            'comment_type' => false,
+            'align_multiline_comment' => false,
         ])
         ->setFinder($finder)
     ;