Skip to content

Commit 0d64bee

Browse files
committed
Fixed parentheses around return value
1 parent 59df2a7 commit 0d64bee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/reference-manual/transforms.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ This transform is expressed in Stan code as:
558558
sum_w += w;
559559
y[i] = (sum_w - x[i_p_1]) * sqrt(i_p_1 * i) / i;
560560
}
561-
return(y);
561+
return y;
562562
}
563563
```
564564

0 commit comments

Comments
 (0)