From 8269067d6f39305de3bfa8312d0cc4b7968a1dc4 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Thu, 21 May 2026 22:21:05 -0700 Subject: [PATCH] Fix "pessemistic" => "pessimistic" Found by my local spell checker git hook during a merge. --- test/lit/passes/global-effects-indirect-merge.wast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit/passes/global-effects-indirect-merge.wast b/test/lit/passes/global-effects-indirect-merge.wast index e7ca31ea11b..96669cf0212 100644 --- a/test/lit/passes/global-effects-indirect-merge.wast +++ b/test/lit/passes/global-effects-indirect-merge.wast @@ -5,7 +5,7 @@ ;; Test that indirect call effects are preserved when types are rewritten ;; globally. When we rewrite $effectful and $not-effectful into the same type, ;; the resulting type has the same effects as the union of the two. This is -;; pessemistic since indirect calls that targeted $not-effectful now look like +;; pessimistic since indirect calls that targeted $not-effectful now look like ;; they may target $effectful as well which is not true in practice. This is the ;; best we can do without preserving extra information before rewriting.