Skip to content

Commit

Permalink
Fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Dec 17, 2023
1 parent 5ba4923 commit cc25508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/covariance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ impl Merge for Covariance {
/// let mut cov_left: Covariance = left.iter().collect();
/// let cov_right: Covariance = right.iter().collect();
/// cov_left.merge(&cov_right);
/// assert_eq!(cov_total, cov_left);
/// assert_eq!(cov_total.population_covariance(), cov_left.population_covariance());
/// ```
#[inline]
fn merge(&mut self, other: &Covariance) {
Expand Down

0 comments on commit cc25508

Please sign in to comment.