Skip to content

Commit c8c7a3c

Browse files
committed
fix rebase weirdness
1 parent de7d43b commit c8c7a3c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4815,7 +4815,6 @@ Released 2018-09-13
48154815
[`get_last_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
48164816
[`get_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
48174817
[`host_endian_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#host_endian_bytes
4818-
[`large_stack_frames`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_frames
48194818
[`identity_conversion`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_conversion
48204819
[`identity_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_op
48214820
[`if_let_mutex`]: https://rust-lang.github.io/rust-clippy/master/index.html#if_let_mutex

book/src/lint_configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,15 +338,15 @@ The maximum allowed size for arrays on the stack
338338
* [`large_const_arrays`](https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays)
339339

340340

341-
### stack-size-threshold
341+
## `stack-size-threshold`
342342
The maximum allowed stack size for functions in bytes
343343

344344
**Default Value:** `512000` (`u64`)
345345

346346
* [large_stack_frames](https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_frames)
347347

348348

349-
### vec-box-size-threshold
349+
## `vec-box-size-threshold`
350350
The size of the boxed type in bytes, where boxing in a `Vec` is allowed
351351

352352
**Default Value:** `4096` (`u64`)

tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ error: error reading Clippy's configuration file: unknown field `barfoo`, expect
110110
semicolon-inside-block-ignore-singleline
111111
semicolon-outside-block-ignore-multiline
112112
single-char-binding-names-threshold
113+
stack-size-threshold
113114
standard-macro-braces
114115
suppress-restriction-lint-in-const
115116
third-party

0 commit comments

Comments
 (0)