From 88d54cb9f48c3e999ebbd348afcdaae324e234ce Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Fri, 24 Apr 2026 10:44:26 +0200 Subject: [PATCH] docs(factor): update stale Player reference to Rating MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follow-up to the Player→Rating rename (2f5aa98); a doc comment in team_sum.rs still referenced Player::performance(). --- src/factor/team_sum.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/factor/team_sum.rs b/src/factor/team_sum.rs index 33e58e6..33d93dc 100644 --- a/src/factor/team_sum.rs +++ b/src/factor/team_sum.rs @@ -6,8 +6,8 @@ use crate::{ /// Computes the weighted sum of player performances into a team-perf var. /// -/// Inputs are pre-computed player performance Gaussians (i.e., player priors -/// already with beta² noise added via `Player::performance()`). The factor +/// Inputs are pre-computed player performance Gaussians (i.e., rating priors +/// already with beta² noise added via `Rating::performance()`). The factor /// runs once per game and writes the weighted sum to the output var. #[derive(Debug)] #[allow(dead_code)]