Skip to content

Commit f6ad2cb

Browse files
committed
fixed broken links
1 parent 8c0af2e commit f6ad2cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/gdb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This is our lex file [lex.l](./gdb-files.md#lexl-file)
5353

5454
This is our yacc file [parser.y](./gdb-files.md#parsery-file)
5555

56-
This is our input file [input.txt](./gdb-files.md#infixtoprefix-function)
56+
This is our input file [input.txt](./gdb-files.md#input-file)
5757

5858
This is our tree.c file [tree.c](./gdb-files.md#treec-file), this contains the helper functions like the infixtoprefix(), createTree() etc.
5959

@@ -111,7 +111,7 @@ Now our GDB is up.
111111

112112
**break** - You can pass a function name or line number as an argument to this command. It will set a break point corresponding to that line number or function. So that when we run the gdb, it halts at the break point, and then we can move incrementally (step by step) exploring the variables and the execution flow.
113113

114-
Here we can use the break command to halt at the start of the execution of the infixtoprefix function [infixtoprefix](./gdb-files.md#infixtoprefix-function), to examine the working of the function in detail.
114+
Here we can use the break command to halt at the start of the execution of the infixtoprefix function, to examine the working of the function in detail.
115115

116116
`(gdb) break infixtoprefix`
117117

0 commit comments

Comments
 (0)