Skip to content

Commit 38e0e55

Browse files
committed
Added missing spaces between ) and {
1 parent 7c25dfa commit 38e0e55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rules/S134/apex/rule.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ if (i == 1) // Compliant - depth = 1
1717
for (Integer j = 0; j < 10; j++) { // Compliant - depth = 2
1818
/* ... */
1919
Integer k = j + 1;
20-
if (k == 3){ // Compliant - depth = 3, not exceeding the limit
20+
if (k == 3) { // Compliant - depth = 3, not exceeding the limit
2121
/* ... */
22-
while (k < 10){ // Noncompliant - depth = 4
22+
while (k < 10) { // Noncompliant - depth = 4
2323
/* ... */
24-
if (k == 1){ // Depth = 5, exceeding the limit, but issues are only reported on depth = 4
24+
if (k == 1) { // Depth = 5, exceeding the limit, but issues are only reported on depth = 4
2525
/* ... */
2626
}
2727
}

0 commit comments

Comments
 (0)