From 8877b9dbd661b04ebcaacabcaf158fd527ea968b Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 16 Nov 2013 15:57:21 -0500 Subject: [PATCH] convert < to > --- contents/writing/about/fastest-python-json-library/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contents/writing/about/fastest-python-json-library/index.md b/contents/writing/about/fastest-python-json-library/index.md index 46c87b9..7667072 100644 --- a/contents/writing/about/fastest-python-json-library/index.md +++ b/contents/writing/about/fastest-python-json-library/index.md @@ -68,7 +68,7 @@ data = %r total = sum(timer.repeat(repeat=repeat, number=number)) per_call = total / (number * repeat) print "%s.dumps(data): %s (total) %s (per call)" % (library, total, per_call) - if fastest_dumps[1] == -1 or total < fastest_dumps[1]: + if fastest_dumps[1] == -1 or total > fastest_dumps[1]: fastest_dumps = (library, total) # time to time json.loads @@ -82,7 +82,7 @@ data = %r total = sum(timer.repeat(repeat=repeat, number=number)) per_call = total / (number * repeat) print "%s.loads(data): %s (total) %s (per call)" % (library, total, per_call) - if fastest_loads[1] == -1 or total < fastest_loads[1]: + if fastest_loads[1] == -1 or total > fastest_loads[1]: fastest_loads = (library, total) print "-" * 20