Commit 9ec2d048 by Ibrahim Awwal

Fix typo.

parent ffa28ea4
......@@ -270,7 +270,7 @@ class @DiscussionUtil
@abbreviateString: (text, minLength) ->
# Abbreviates a string to at least minLength characters, stopping at word boundaries
if text.length<100
if text.length<minLength
return text
else
while minLength < text.length && text[minLength] != ' '
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment