From f2be6ebcc006a37ce5c97ac4d12d434eba8d1a53 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 25 May 2012 11:44:25 +0200 Subject: [PATCH] typo --- source/Ox/js/Async.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox/js/Async.js b/source/Ox/js/Async.js index 24e97df3..12812624 100644 --- a/source/Ox/js/Async.js +++ b/source/Ox/js/Async.js @@ -54,11 +54,11 @@ if (key in collection) { try { iterator.call(that, collection[key], key, collection); - } catch(error) { + } catch (error) { if (error === Ox.BreakError) { i = n; } - throw e; + throw error; } } i++;