aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/command
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-09-18 08:40:46 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2016-09-25 21:31:46 +0200
commit47e4795060ee8550e28f86cedd4654fad19f72a4 (patch)
tree4f325af5b4e895f4c8b58c095b3049342a77837e /railties/lib/rails/command
parentefd808755cac74f0001907a1d635856160d11f6a (diff)
downloadrails-47e4795060ee8550e28f86cedd4654fad19f72a4.tar.gz
rails-47e4795060ee8550e28f86cedd4654fad19f72a4.tar.bz2
rails-47e4795060ee8550e28f86cedd4654fad19f72a4.zip
Apply Rafaels review fixes.
Diffstat (limited to 'railties/lib/rails/command')
-rw-r--r--railties/lib/rails/command/behavior.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/command/behavior.rb b/railties/lib/rails/command/behavior.rb
index 1d7bab6ab2..ce994746a4 100644
--- a/railties/lib/rails/command/behavior.rb
+++ b/railties/lib/rails/command/behavior.rb
@@ -21,7 +21,7 @@ module Rails
# This code is based directly on the Text gem implementation.
# Copyright (c) 2006-2013 Paul Battley, Michael Neumann, Tim Fletcher.
#
- # Returns a value representing the "cost" of transforming str1 into str2
+ # Returns a value representing the "cost" of transforming str1 into str2.
def levenshtein_distance(str1, str2)
s = str1
t = str2