Skip to content

Commit 555ccf2

Browse files
authored
Fix a broken link in the docs (pyodide#5272)
1 parent f9ab6e1 commit 555ccf2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/development/debugging.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ Now we basically know the cause of the trouble. You can look up `cfunction_call`
153153
in the CPython source code with the help of ripgrep and locate the line that
154154
generates this call, and look up `one` in the appropriate source and find the
155155
signature. Another approach to locate the call site would be to recompile with
156-
`-g3` and use source maps {ref}`source-maps` to locate the problematic source
157-
code. With the same process of reproduce crash ==> click innermost stack frame
158-
==> see source file and line where the error occurs. In this case we see that
159-
the crash is on the line:
156+
`-g3` and use source maps {ref}`build-with-symbols` to locate the problematic
157+
source code. With the same process of reproduce crash ==> click innermost stack
158+
frame ==> see source file and line where the error occurs. In this case we see
159+
that the crash is on the line:
160160

161161
```C
162162
result = _PyCFunction_TrampolineCall(meth, self, args);

0 commit comments

Comments
 (0)