Skip to content

Commit f9d662e

Browse files
authored
Update character_lcd.py
1 parent ff1df52 commit f9d662e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adafruit_character_lcd/character_lcd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def __init__(self, rs, en, d4, d5, d6, d7, columns, lines
170170
self._enable = None
171171
self._direction = None
172172
# track row and column used in cursor_position
173-
# itialize to 0,0
173+
# initialize to 0,0
174174
self.row = 0
175175
self.column = 0
176176
self._column_align = False
@@ -205,8 +205,8 @@ def clear(self):
205205

206206
@property
207207
def column_align(self):
208-
"""If True, message text after '\n' starts directly below start of first
209-
character in message. If False, text after '\n' starts at column zero.
208+
"""If True, message text after '\\n' starts directly below start of first
209+
character in message. If False, text after '\\n' starts at column zero.
210210
"""
211211
return self._column_align
212212

0 commit comments

Comments
 (0)