From 0f8fbc70a2d2d383d60efda528ae8b27dabddf98 Mon Sep 17 00:00:00 2001 From: Robert Richter Date: Fri, 27 Mar 2015 23:47:41 -0500 Subject: [PATCH] Fix two minor offenses in the CharactersGenerator --- app/controllers/characters_generator_controller.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/controllers/characters_generator_controller.rb b/app/controllers/characters_generator_controller.rb index 36c2e6e7..4d9e6a0d 100644 --- a/app/controllers/characters_generator_controller.rb +++ b/app/controllers/characters_generator_controller.rb @@ -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 \ No newline at end of file +end