Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'docs/book/src/contributing/debugging.md')
| -rw-r--r-- | docs/book/src/contributing/debugging.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/book/src/contributing/debugging.md b/docs/book/src/contributing/debugging.md index fcda664f5e..ace9be025a 100644 --- a/docs/book/src/contributing/debugging.md +++ b/docs/book/src/contributing/debugging.md @@ -68,7 +68,7 @@ while d == 4 { // set a breakpoint here and change the value However for this to work, you will need to enable debug_assertions in your build -```rust +```bash RUSTFLAGS='--cfg debug_assertions' cargo build --release ``` |