diff --git a/docs/config_coding.html b/docs/config_coding.html index a2c8aa909..fc2bd34f5 100644 --- a/docs/config_coding.html +++ b/docs/config_coding.html @@ -68,7 +68,7 @@

ArrayTrailingComma

Description

- Checks if array initialization contains optional trailing comma. + Checks that array initialization contains a trailing comma.

       int[] a = new int[] 
@@ -79,14 +79,14 @@
       }; 
       

- But it allows do not add comma if both left and right curlys - on the same line. + The check allows to not add a comma if both left and right curlys + are on the same line.

       return new int[] { 0 };
       

- Rationale: Putting this comma in make is easier to change the + Rationale: Putting this comma in makes it easier to change the order of the elements or add new elements on the end.

Examples