From fa85bb1eef4a013b640e39a48d374dd6baac0434 Mon Sep 17 00:00:00 2001 From: Kyle Marek-Spartz Date: Mon, 17 Feb 2014 14:17:54 -0600 Subject: [PATCH] Remove spaces from after method definitions --- example/set.wren | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/example/set.wren b/example/set.wren index 6cae8f81..3d0a0be3 100644 --- a/example/set.wren +++ b/example/set.wren @@ -24,12 +24,12 @@ class Set { } } - add (element) { + add(element) { _clean = false _list.add(element) } - remove (element) { + remove(element) { cleanup // Remove duplicates, so we can return early upon deletion. for (i in 0.._list.count) { if (_list[i] == element) { @@ -39,7 +39,7 @@ class Set { } } - contains (element) { + contains(element) { return _list.contains(element) } @@ -48,7 +48,7 @@ class Set { return _list.count } - iterate (i) { + iterate(i) { cleanup if (i == null) { if (count > 0) return 0 @@ -58,16 +58,16 @@ class Set { return i + 1 } - iteratorValue (i) { + iteratorValue(i) { cleanup return _list[i] } - map (f) { + map(f) { return new Set(_list.map(f)) } - where (f) { + where(f) { return new Set(_list.where(f)) }