summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/lib
diff options
context:
space:
mode:
authora14m <[email protected]>2020-12-12 01:24:02 +0100
committera14m <[email protected]>2020-12-12 01:24:02 +0100
commit2a64a147e8d40785da42cedb1bbe77520e056fb4 (patch)
tree66833e560cff308cadbcaf5a2374a3c91564e6a7 /CLI/ruby/lib
parentf43355b7c5f18e7223d8fd4c8537a09faf672034 (diff)
Minor markdown modifications and documentation updates
Diffstat (limited to 'CLI/ruby/lib')
-rw-r--r--CLI/ruby/lib/game_of_life.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/CLI/ruby/lib/game_of_life.rb b/CLI/ruby/lib/game_of_life.rb
index d61834a..879c527 100644
--- a/CLI/ruby/lib/game_of_life.rb
+++ b/CLI/ruby/lib/game_of_life.rb
@@ -49,9 +49,9 @@ module GameOfLife
end
end
- # Private method to do the terminal screen/scrollback buffer cleaning
+ # render method to do the terminal screen/scrollback buffer cleaning
# and rendering of the current universe/banner info
- # based on the delay configured by the user
+ # based on the delay/cell configured by the user
def render(universe)
puts "\33c\e[3J" # Clears the screen and scrollback buffer.
puts universe.to_s