From 6c137870a8d8439c57f9576090aa27e455252ecc Mon Sep 17 00:00:00 2001 From: Joni Fofonoff Date: Thu, 10 Sep 2026 19:50:48 +0300 Subject: [PATCH 1/2] Removed duplicate bullet points in CONTRIBUTING.md --- CONTRIBUTING.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 351dbab23351..64f0f2071a67 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,12 +49,7 @@ An algorithm is one or more functions (or classes) that: - take one or more inputs, - perform some internal calculations or data manipulations, - return one or more outputs, -- have minimal side effects (e.g., `print()`, `plot()`, `read()`, `write()`). -An Algorithm is one or more functions (or classes) that: -- take one or more inputs, -- perform some internal calculations or data manipulations, -- return one or more outputs, -- have minimal side effects (Ex. `print()`, `plot()`, `read()`, `write()`). +- have minimal side effects (e.g. `print()`, `plot()`, `read()`, `write()`). Algorithms should be packaged in a way that would make it easy for readers to integrate them into larger programs. From f48f8a291092214ce50cb550f58b4cd84017907a Mon Sep 17 00:00:00 2001 From: Joni Fofonoff Date: Thu, 10 Sep 2026 19:57:38 +0300 Subject: [PATCH 2/2] comma --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64f0f2071a67..0d9461af5188 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,7 +49,7 @@ An algorithm is one or more functions (or classes) that: - take one or more inputs, - perform some internal calculations or data manipulations, - return one or more outputs, -- have minimal side effects (e.g. `print()`, `plot()`, `read()`, `write()`). +- have minimal side effects (e.g., `print()`, `plot()`, `read()`, `write()`). Algorithms should be packaged in a way that would make it easy for readers to integrate them into larger programs.