Skip to content

Commit e133202

Browse files
Remove unmatched parenthesis (#112)
This PR removes an unmatched parenthesis in the end of an expression in the docstring for `var`.
1 parent c38dd44 commit e133202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Statistics.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ The algorithm returns an estimator of the generative distribution's variance
347347
under the assumption that each entry of `itr` is a sample drawn from the same
348348
unknown distribution, with the samples uncorrelated.
349349
For arrays, this computation is equivalent to calculating
350-
`sum((itr .- mean(itr)).^2) / (length(itr) - 1))`.
350+
`sum((itr .- mean(itr)).^2) / (length(itr) - 1)`.
351351
If `corrected` is `true`, then the sum is scaled with `n-1`,
352352
whereas the sum is scaled with `n` if `corrected` is
353353
`false` where `n` is the number of elements in `itr`.

0 commit comments

Comments
 (0)