summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Anderson <jandew+dev@gmail.com>2016-02-19 10:14:20 -0800
committerJoe Anderson <jandew+dev@gmail.com>2016-02-19 10:14:20 -0800
commit57b7e327bae2f46553a534836520cf957b59ced8 (patch)
tree1f77f463bcfe529da615ac1cf0c4941c5d97b4e9
parent3624578771144bbd30a54078fa8cc3b923ea1e49 (diff)
downloadoo-57b7e327bae2f46553a534836520cf957b59ced8.tar.gz
oo-57b7e327bae2f46553a534836520cf957b59ced8.zip
minor documentation fix
-rw-r--r--oo.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/oo.py b/oo.py
index 2500099..8037fb3 100644
--- a/oo.py
+++ b/oo.py
@@ -542,7 +542,10 @@ class ooPlay:
self.display_subroutine(x1, y1, recursing=True, cursor=cursor)
def display_pos(self, x, y, cursor=None):
- """Update one position on the board, refresh screen."""
+ """Update one position on the board, refresh screen.
+
+ Updates adjacent positions when moving the cursor.
+ """
self.display_subroutine(x, y, cursor=cursor)
if self.show_errors or cursor:
for direction in self.puzzle.DIRECTIONS: