Skip to content

Commit

Permalink
adjusting indentation and using faster concatenation operator
Browse files Browse the repository at this point in the history
  • Loading branch information
dlt authored and Ryan Fitzgerald committed Nov 27, 2011
1 parent 7842ce4 commit 36dc19a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/generators/backbone/resource_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def application_name
end

def uncapitalize(str)
str[0, 1].downcase + str[1..-1]
str[0, 1].downcase << str[1..-1]
end

end
end
end
end

0 comments on commit 36dc19a

Please sign in to comment.