more updates to help rewording.

This commit is contained in:
Storm Dragon 2018-08-02 21:45:19 -04:00
parent 933cf962f0
commit 71a46ab614
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _('set review cursor to char below the current char and present it.') return _('Move review to the character below the current position')
def run(self): def run(self):
cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()

View File

@ -15,7 +15,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _('set review cursor to the char in the line below and present it') return _('Move review to the character in the line above the current position')
def run(self): def run(self):
cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()