From 3b9db77d69c6a34ece22dc50c7b091d660e42a06 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Sun, 19 Apr 2015 23:12:59 -0500
Subject: [PATCH] Typo fixes

---
 loopy/auto_test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/loopy/auto_test.py b/loopy/auto_test.py
index 2a44853dd..774e1f86e 100644
--- a/loopy/auto_test.py
+++ b/loopy/auto_test.py
@@ -371,11 +371,11 @@ def auto_test_vs_ref(
 
     for i, (ref_arg, test_arg) in enumerate(zip(ref_knl.args, test_knl.args)):
         if ref_arg.name != test_arg.name:
-            raise LoopyError("ref_knl and test_knl argument lists disagee at index "
+            raise LoopyError("ref_knl and test_knl argument lists disagree at index "
                     "%d (1-based)" % (i+1))
 
         if ref_arg.dtype != test_arg.dtype:
-            raise LoopyError("ref_knl and test_knl argument lists disagee at index "
+            raise LoopyError("ref_knl and test_knl argument lists disagree at index "
                     "%d (1-based)" % (i+1))
 
     from loopy.compiled import CompiledKernel, get_highlighted_cl_code
-- 
GitLab