index
:
tic-tac-toe
master
Simple incomplete console tic-tac-toe game
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
board.rb
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'board.rb')
-rw-r--r--
board.rb
2
1 files changed, 1 insertions, 1 deletions
diff --git a/board.rb b/board.rb
index 9481d45..93b726a 100644
--- a/
board.rb
+++ b/
board.rb
@@ -8,6 +8,6 @@ class Board
end
def render
- puts "...\n" * 3
+ "...\n" * 3
end
end