diff options
| -rw-r--r-- | CLI/ruby/README.md | 6 | ||||
| -rw-r--r-- | CLI/ruby/lib/game_of_life.rb | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/CLI/ruby/README.md b/CLI/ruby/README.md index 15cf0f7..85ab018 100644 --- a/CLI/ruby/README.md +++ b/CLI/ruby/README.md @@ -62,6 +62,6 @@ The tag will automatically trigger the release workflow after successful build/t and release the changes to [rubygems.org](https://rubygems.org/gems/terminal_game_of_life) ## Extra information -### [Contributing](../../CONTRIBUTING.md) -### [License](../../LICENSE.md) -### [Code of Conduct](../../CODE_OF_CONDUCT.md) +### [Contributing](https://gitlab.com/a14m/game-of-life/-/blob/master/CONTRIBUTING.md) +### [License](https://gitlab.com/a14m/game-of-life/-/blob/master/LICENSE.md) +### [Code of Conduct](https://gitlab.com/a14m/game-of-life/-/blob/master/CODE_OF_CONDUCT.md) 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 |
