Skip to content

Commit 617e504

Browse files
committed
fix rebase weirdness
1 parent 31ef900 commit 617e504

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
@@ -4814,7 +4814,6 @@ Released 2018-09-13
48144814
[`get_last_with_len`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
48154815
[`get_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
48164816
[`host_endian_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#host_endian_bytes
4817-
[`large_stack_frames`]: https://rust-lang.github.io/rust-clippy/master/index.html#large_stack_frames
48184817
[`identity_conversion`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_conversion
48194818
[`identity_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#identity_op
48204819
[`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
@@ -328,15 +328,15 @@ The maximum allowed size for arrays on the stack
328328
* [`large_const_arrays`](https://rust-lang.github.io/rust-clippy/master/index.html#large_const_arrays)
329329

330330

331-
### stack-size-threshold
331+
## `stack-size-threshold`
332332
The maximum allowed stack size for functions in bytes
333333

334334
**Default Value:** `512000` (`u64`)
335335

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

338338

339-
### vec-box-size-threshold
339+
## `vec-box-size-threshold`
340340
The size of the boxed type in bytes, where boxing in a `Vec` is allowed
341341

342342
**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
@@ -102,6 +102,7 @@ error: error reading Clippy's configuration file: unknown field `barfoo`, expect
102102
semicolon-inside-block-ignore-singleline
103103
semicolon-outside-block-ignore-multiline
104104
single-char-binding-names-threshold
105+
stack-size-threshold
105106
standard-macro-braces
106107
suppress-restriction-lint-in-const
107108
third-party

0 commit comments

Comments
 (0)