More help text changes.

This commit is contained in:
Storm Dragon 2018-07-31 08:38:40 -04:00
parent 073babc759
commit 1e5ff1d6ed
3 changed files with 3 additions and 3 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 end of current line and display the content') return _('Move Review to the end of current line and display the content')
def run(self): def run(self):
cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()

View File

@ -16,7 +16,7 @@ class command():
def shutdown(self): def shutdown(self):
pass pass
def getDescription(self): def getDescription(self):
return _('Move the review cursor to the first character on the current line') return _('Move Review to the first character on the line')
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 _('Move the review cursor to the last character on the current line') return _('Move Review to the last character on the line')
def run(self): def run(self):
cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor()