From a01cd54e6a12337fbe53c37a51d8b1845785b466 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Thu, 23 Apr 2015 14:53:39 -0400 Subject: [PATCH] Bold the symbol --- app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.rb b/app.rb index f569104..7a120f3 100644 --- a/app.rb +++ b/app.rb @@ -29,7 +29,7 @@ end def readable_number(value) numbers.each do |number, symbol| if value.to_f / number.to_f > 1 - return (value.to_f / number.to_f).round(2).to_s + symbol + return (value.to_f / number.to_f).round(2).to_s + '' + symbol + '' end end