From c357c9c730440b297c1bc59d91181f62f9f3f9f7 Mon Sep 17 00:00:00 2001 From: a14m Date: Sun, 29 Nov 2020 23:52:02 +0100 Subject: Remove linting issue --- CLI/ruby/lib/game_of_life/cell.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CLI/ruby/lib') diff --git a/CLI/ruby/lib/game_of_life/cell.rb b/CLI/ruby/lib/game_of_life/cell.rb index fe52263..5fc527e 100644 --- a/CLI/ruby/lib/game_of_life/cell.rb +++ b/CLI/ruby/lib/game_of_life/cell.rb @@ -13,7 +13,7 @@ module GameOfLife # Representation of a cell # @return [String] if a cell is alive or an empty space def to_s - return @alive ? "\u2588" : "\s" + @alive ? "\u2588" : "\s" end end end -- cgit v1.2.3