aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-10-14 17:00:28 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-10-14 17:00:28 -0400
commit558804cbb1a365c3fae4c97b56e6603fe93cf028 (patch)
treee8e1987eb4e28cc0811a15c1221f447dafc23924 /doc
parentfa824e26ec41bc4795eae0e6e1f3cacb77118f62 (diff)
Remove indications that BQN might add tolerant comparison; it won't
Diffstat (limited to 'doc')
-rw-r--r--doc/match.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/match.md b/doc/match.md
index e85b8c59..14ff8ffb 100644
--- a/doc/match.md
+++ b/doc/match.md
@@ -27,7 +27,7 @@ Starting with the easiest rules, values with different types are never equal to
⟨'a', +, 3⟩ = ⟨-⟜», '+', 3˙⟩
-Two characters are equal when they have the same code point. Numeric equality depends on the number system in use, but probably works about how you expect. If you're coming from APL, note that current BQN implementations don't employ comparison tolerance. To see if two floats are roughly equal you'll need to write a tolerant comparison yourself, but how often do you really need to do this?
+Two characters are equal when they have the same code point. Numeric equality depends on the number system in use, but probably works about how you expect. If you're coming from APL, note that BQN doesn't use comparison tolerance. To see if two floats are roughly equal you'll need to write a tolerant comparison yourself, but how often do you really need to do this?
'x' = "wxyz"