Skip to content

Commit b380518

Browse files
authored
Rollup merge of rust-lang#102625 - Rageking8:fix-backtrace-small-typo, r=m-ou-se
fix backtrace small typo
2 parents 919d6bf + 9fb509e commit b380518

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/backtrace.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
//! Backtraces are attempted to be as accurate as possible, but no guarantees
1515
//! are provided about the exact accuracy of a backtrace. Instruction pointers,
1616
//! symbol names, filenames, line numbers, etc, may all be incorrect when
17-
//! reported. Accuracy is attempted on a best-effort basis, however, and bugs
18-
//! are always welcome to indicate areas of improvement!
17+
//! reported. Accuracy is attempted on a best-effort basis, however, any bug
18+
//! reports are always welcome to indicate areas of improvement!
1919
//!
2020
//! For most platforms a backtrace with a filename/line number requires that
2121
//! programs be compiled with debug information. Without debug information
@@ -39,7 +39,7 @@
3939
//! default. Its behavior is governed by two environment variables:
4040
//!
4141
//! * `RUST_LIB_BACKTRACE` - if this is set to `0` then `Backtrace::capture`
42-
//! will never capture a backtrace. Any other value this is set to will enable
42+
//! will never capture a backtrace. Any other value set will enable
4343
//! `Backtrace::capture`.
4444
//!
4545
//! * `RUST_BACKTRACE` - if `RUST_LIB_BACKTRACE` is not set, then this variable

0 commit comments

Comments
 (0)