summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorJoshua Nelson <github@jyn.dev>2022-08-10 09:23:00 -0500
committerJoshua Nelson <github@jyn.dev>2022-08-10 09:23:51 -0500
commit4810caa4844ab7d684c861bc03dbfdac6245d5fa (patch)
tree0d452a04ac25258f15742acbcf8ea88167a1470e /src/doc/rustc-dev-guide
parentacda23e85b7c38d9cac473f7c8f9af29617d180d (diff)
downloadrust-4810caa4844ab7d684c861bc03dbfdac6245d5fa.tar.gz
rust-4810caa4844ab7d684c861bc03dbfdac6245d5fa.zip
Update src/compiler-debugging.md
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/compiler-debugging.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/compiler-debugging.md b/src/doc/rustc-dev-guide/src/compiler-debugging.md
index e29c0c9ef5f..0b1e9f48e2c 100644
--- a/src/doc/rustc-dev-guide/src/compiler-debugging.md
+++ b/src/doc/rustc-dev-guide/src/compiler-debugging.md
@@ -24,7 +24,7 @@ If you want to use GDB to debug rustc, please set `config.toml` with options:
 [rust]
 debug = true
 debuginfo-level = 2 
-# WANRING: this will cost a lot of disk space (about 35GB) and compiling time.
+# WARNING: this will use a lot of disk space (about 35GB) and compile time.
 # Without debuginfo-level, you may also track the execution path, but lost
 # the symbol information for debugging.
 ```