From df17dfb2c0073f88ab5fd84b3d3e48ba8dff0bf6 Mon Sep 17 00:00:00 2001 From: Alex Shepard Date: Wed, 22 Jul 2026 12:42:05 -0700 Subject: [PATCH] Fix typo in readme Update README to correct color description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ddbfc8b..e176bdc 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ def where(q, a, b): "Use this function to replace an if-statement." return (q * a) + (~q) * b -# In diagrams, orange is positive/True, where is zero/False, and blue is negative. +# In diagrams, orange is positive/True, white is zero/False, and blue is negative. examples = [(tensor([False]), tensor([10]), tensor([0])), (tensor([False, True]), tensor([1, 1]), tensor([-10, 0])),