File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ compiler is doing a particular thing.
164
164
To see the logs, you need to set the ` RUSTC_LOG` environment variable to your
165
165
log filter. Your log filter can be just ` debug` to get all ` debug! ` output, or
166
166
` path::to::module` to get * all* output (not just ` debug! ` ) from a particular
167
- module, or ` path::to::module=debug` to get only ` debug! ` output form a
167
+ module, or ` path::to::module=debug` to get only ` debug! ` output from a
168
168
particular module.
169
169
170
170
For example, to get the ` debug! ` output for a specific module, you can run the
@@ -204,7 +204,7 @@ $ RUSTC_LOG=debug rustc +stage1 my-file.rs 2>all-log
204
204
# This will show the output of all `info!` calls in `rustc_codegen_ssa`.
205
205
#
206
206
# There's an `info!` statement in `codegen_instance` that outputs
207
- # every function that is translated . This is useful to find out
207
+ # every function that is codegen'd . This is useful to find out
208
208
# which function triggers an LLVM assertion, and this is an `info!`
209
209
# log rather than a `debug!` log so it will work on the official
210
210
# compilers.
You can’t perform that action at this time.
0 commit comments