Correct few spelling in the comments

This commit is contained in:
DV Suresh
2013-12-21 01:19:22 -06:00
parent 21bbdf7049
commit 24886c300b
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ class TopicsController < ApplicationController
title, raw = params[:title], params[:raw]
[:title, :raw].each { |key| check_length_of(key, params[key]) }
# Only suggest similar topics if the site has a minimmum amount of topics present.
# Only suggest similar topics if the site has a minimum amount of topics present.
topics = Topic.similar_to(title, raw, current_user).to_a if Topic.count_exceeds_minimum?
render_serialized(topics, BasicTopicSerializer)