Skip to content

Commit

Permalink
Merge pull request #168 from tabun-dareka/master
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
sashs authored Apr 24, 2023
2 parents c03cfe5 + e6bfd41 commit 85e0379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ropper/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ def do_show(self, text):
def help_show(self):
desc = 'shows informations about the loaded file'
if self.__getDataPrinter(self.currentFile.type):
desc += ('Available informations:\n' +
desc += ('\n\nAvailable informations:\n' +
('\n'.join(self.__getDataPrinter(self.currentFile.type).availableInformations)))
self.__printHelpText(
'show <info>', desc)
Expand Down Expand Up @@ -1110,7 +1110,7 @@ def do_semantic(self, text):
self.__cprinter.println()

def help_semantic(self):
self.__printHelpText('semantic', 'Searches gadgets\nsemantic <constraint>[; <constraint>][ !<stable reg>*]\n\nExample:\nsemantc eax==ebx; ecx==1 !edx !esi\n\nValid constraints:\nreg==reg\nreg==number\nreg==[reg]\nreg<+|-|*|/>=<reg|number|[reg]>')
self.__printHelpText('semantic', 'Searches gadgets\nsemantic <constraint>[; <constraint>][ !<stable reg>*]\n\nExample:\nsemantic eax==ebx; ecx==1 !edx !esi\n\nValid constraints:\nreg==reg\nreg==number\nreg==[reg]\nreg<+|-|*|/>=<reg|number|[reg]>')

# @safe_cmd
# def do_analyse(self, text):
Expand Down

0 comments on commit 85e0379

Please sign in to comment.