From 110476901ca6f0dc7710c0b9dfc240be31530d57 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Fri, 10 Jan 2014 22:31:00 -0500 Subject: [PATCH] Fix a few typos in the tests. Thanks again, @olasd --- tests/native_tests/language.hy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/native_tests/language.hy b/tests/native_tests/language.hy index f954909..11bf01a 100644 --- a/tests/native_tests/language.hy +++ b/tests/native_tests/language.hy @@ -41,7 +41,7 @@ (assert (= count 150))) -(defn test-nasty-nesting [] +(defn test-nasty-for-nesting [] "NATIVE: test nesting for loops harder" ;; This test and feature is dedicated to @nedbat. @@ -65,7 +65,7 @@ (else (throw Exception))) ;; OK. This next test will ensure that the else is hooked up to the - ;; "outter" iteration + ;; "outer" iteration (for [x (range 2) y (range 2)] (if (= x 1) (break))