From 966257f48266ca154624a4db14f76aa9b9beefd6 Mon Sep 17 00:00:00 2001 From: Kevin Xiwei Zheng Date: Sun, 2 Feb 2014 14:54:48 -0500 Subject: [PATCH] Fix hash key typo in TagAliasCorrection --- app/logical/tag_alias_correction.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/logical/tag_alias_correction.rb b/app/logical/tag_alias_correction.rb index 4afd1e39b..8f8369cd7 100644 --- a/app/logical/tag_alias_correction.rb +++ b/app/logical/tag_alias_correction.rb @@ -26,7 +26,7 @@ class TagAliasCorrection http.request_get("/tag_aliases/#{tag_alias_id}/correction.json") do |res| if res === Net::HTTPSuccess json = JSON.parse(res.body) - statistics_hash["antecedent_cache"] = json["antecdent_cache"] + statistics_hash["antecedent_cache"] = json["antecedent_cache"] statistics_hash["consequent_cache"] = json["consequent_cache"] end end