From a4601b64962e5ff24350bc9f33bab9c4574d6d6b Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Sat, 11 Sep 2010 00:03:03 +0000 Subject: [PATCH] Don't use lldb syntax in the gdb examples... llvm-svn: 113669 --- lldb/docs/lldb-for-gdb-users.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/docs/lldb-for-gdb-users.txt b/lldb/docs/lldb-for-gdb-users.txt index 5b4c40c36e27..1071ac760326 100644 --- a/lldb/docs/lldb-for-gdb-users.txt +++ b/lldb/docs/lldb-for-gdb-users.txt @@ -35,11 +35,11 @@ about stating their intentions. The first instance you'll note of this is the breakpoint command. In gdb, to set a breakpoint, you would just say: -(gdb) break set foo.c:12 +(gdb) break foo.c:12 or -(gdb) break set foo +(gdb) break foo if foo is a function. As time went on, the parser that tells foo.c:12 from foo from foo.c::foo (which means the function foo in the file