diff --git a/snippets/elo.md b/snippets/elo.md index 6cf448595..1f4207996 100644 --- a/snippets/elo.md +++ b/snippets/elo.md @@ -25,7 +25,6 @@ const elo = ([...ratings], kFactor = 32, selfRating) => { [ratings[i], ratings[j]] = elo([ratings[i], ratings[j]], kFactor); } } - return ratings; }; ```