Parcourir la source

Debugger: Add missing newline in "help" output

Andreas Kling il y a 5 ans
Parent
commit
a40aa80df1
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Applications/Debugger/main.cpp

+ 1 - 1
Applications/Debugger/main.cpp

@@ -170,7 +170,7 @@ void print_help()
            "cont - Continue execution\n"
            "si - step to the next instruction\n"
            "sl - step to the next source line\n"
-           "line - show the position of the current instruction in the source code"
+           "line - show the position of the current instruction in the source code\n"
            "regs - Print registers\n"
            "dis [number of instructions] - Print disassembly\n"
            "bp <address/symbol/file:line> - Insert a breakpoint\n");