Fix hash key typo in TagAliasCorrection

This commit is contained in:
Kevin Xiwei Zheng
2014-02-02 14:54:48 -05:00
parent 7409ea966c
commit 966257f482

View File

@@ -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