From 650a49d87b0c41c6e9054c4f6db06584fe2e3744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Geuken?= Date: Fri, 17 Apr 2015 09:47:01 +0200 Subject: [PATCH] Update method documentation (returns a string not an fixnum) --- app/models/conference.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/conference.rb b/app/models/conference.rb index 76615367..5954927d 100644 --- a/app/models/conference.rb +++ b/app/models/conference.rb @@ -705,7 +705,7 @@ class Conference < ActiveRecord::Base # Returns the progress of the set up conference list in percent # # ====Returns - # * +Fixnum+ -> Progress in Percent + # * +String+ -> Progress in Percent def calculate_setup_progress(result) (100 * result.values.count(true) / result.values.count).to_s end