Fix two minor offenses in the CharactersGenerator

This commit is contained in:
Robert Richter 2015-03-27 23:47:41 -05:00
parent 5a98b93dd1
commit 0f8fbc70a2

View File

@ -1,6 +1,5 @@
# Generates random Character values
class CharactersGeneratorController < ApplicationController
def age
@upper_limit = 100
@lower_limit = 2
@ -88,4 +87,4 @@ class CharactersGeneratorController < ApplicationController
render json: rand(@lower_limit...@upper_limit)
end
end
end