From 4331cca642c1200c5e71a8092ce2db440ad915c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Sat, 31 May 2003 04:57:23 +0000 Subject: [PATCH] small fixes --- docs/config_coding.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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