Skip to content

Commit ae3ed31

Browse files
committed
Use underscores to breakup long number.
1 parent 2d1d4d1 commit ae3ed31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ struct Output {
123123
}
124124

125125
pub fn main() {
126-
const STACK_SIZE: usize = 32000000; // 32MB
126+
const STACK_SIZE: usize = 32_000_000; // 32MB
127127
let res = std::thread::Builder::new().stack_size(STACK_SIZE).spawn(move || {
128128
let s = env::args().collect::<Vec<_>>();
129129
main_args(&s)

0 commit comments

Comments
 (0)