Skip to content

Commit 19465c9

Browse files
committed
Auto merge of rust-lang#10715 - xFrednet:changelog-1-69, r=llogiq
Catching, stray, commas, (I'll, never, learn, to, use, them, correctly) 😅 Roses are red, Violets are blue, Fixing commas, Is the completed todo. (It's always impressive, that the poems are getting worse) --- Follow-up from: rust-lang/rust-clippy#10668 changelog: none
2 parents abd2c1e + 637d10b commit 19465c9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Current stable, released 2023-04-20
4444

4545
### Enhancements
4646

47-
* [`arithmetic_side_effects`]: No longer lints, if safe constant values are used.
47+
* [`arithmetic_side_effects`]: No longer lints if safe constant values are used.
4848
[#10310](https://github.com/rust-lang/rust-clippy/pull/10310)
4949
* [`needless_lifetimes`]: Now works in local macros
5050
[#10257](https://github.com/rust-lang/rust-clippy/pull/10257)
@@ -60,39 +60,39 @@ Current stable, released 2023-04-20
6060

6161
### False Positive Fixes
6262

63-
* [`explicit_auto_deref`]: Now considers projections, when determining if auto deref is applicable
63+
* [`explicit_auto_deref`]: Now considers projections when determining if auto deref is applicable
6464
[#10386](https://github.com/rust-lang/rust-clippy/pull/10386)
65-
* [`manual_let_else`]: Now considers side effects of branches, before linting
65+
* [`manual_let_else`]: Now considers side effects of branches before linting
6666
[#10336](https://github.com/rust-lang/rust-clippy/pull/10336)
6767
* [`uninlined_format_args`]: No longer lints for arguments with generic parameters
6868
[#10343](https://github.com/rust-lang/rust-clippy/pull/10343)
69-
* [`needless_lifetimes`]: No longer lints signatures in macros, if the lifetime is a metavariable
69+
* [`needless_lifetimes`]: No longer lints signatures in macros if the lifetime is a metavariable
7070
[#10380](https://github.com/rust-lang/rust-clippy/pull/10380)
71-
* [`len_without_is_empty`]: No longer lints, if `len` as a non-default signature
71+
* [`len_without_is_empty`]: No longer lints if `len` as a non-default signature
7272
[#10255](https://github.com/rust-lang/rust-clippy/pull/10255)
73-
* [`unusual_byte_groupings`]: Relaxed the required restrictions for specific sizes, to reduce false
73+
* [`unusual_byte_groupings`]: Relaxed the required restrictions for specific sizes to reduce false
7474
positives
7575
[#10353](https://github.com/rust-lang/rust-clippy/pull/10353)
7676
* [`manual_let_else`]: No longer lints `if-else` blocks if they can divergent
7777
[#10332](https://github.com/rust-lang/rust-clippy/pull/10332)
7878
* [`expect_used`], [`unwrap_used`], [`dbg_macro`], [`print_stdout`], [`print_stderr`]: No longer lint
79-
in test functions, if `allow-expect-in-tests` is set
79+
in test functions if `allow-expect-in-tests` is set
8080
[#10391](https://github.com/rust-lang/rust-clippy/pull/10391)
8181
* [`unnecessary_safety_comment`]: No longer lints code inside macros
8282
[#10106](https://github.com/rust-lang/rust-clippy/pull/10106)
83-
* [`never_loop`]: No longer lints, for statements following break statements for outer blocks.
83+
* [`never_loop`]: No longer lints statements following break statements for outer blocks.
8484
[#10311](https://github.com/rust-lang/rust-clippy/pull/10311)
8585

8686
### Suggestion Fixes/Improvements
8787

88-
* [`box_default`]: The suggestion now includes the type for trait objects, when needed
88+
* [`box_default`]: The suggestion now includes the type for trait objects when needed
8989
[#10382](https://github.com/rust-lang/rust-clippy/pull/10382)
9090
* [`cast_possible_truncation`]: Now suggests using `try_from` or allowing the lint
9191
[#10038](https://github.com/rust-lang/rust-clippy/pull/10038)
9292
* [`invalid_regex`]: Regex errors for non-literals or regular strings containing escape sequences will
9393
now show the complete error
9494
[#10231](https://github.com/rust-lang/rust-clippy/pull/10231)
95-
* [`transmutes_expressible_as_ptr_casts`]: The suggestion now works, if the base type is borrowed
95+
* [`transmutes_expressible_as_ptr_casts`]: The suggestion now works if the base type is borrowed
9696
[#10193](https://github.com/rust-lang/rust-clippy/pull/10193)
9797
* [`needless_return`]: Now removes all semicolons on the same line
9898
[#10187](https://github.com/rust-lang/rust-clippy/pull/10187)
@@ -113,7 +113,7 @@ Current stable, released 2023-04-20
113113

114114
### ICE Fixes
115115

116-
* [`needless_pass_by_value`]: Fixed an ICE, caused by how late bounds were handled
116+
* [`needless_pass_by_value`]: Fixed an ICE caused by how late bounds were handled
117117
[#10328](https://github.com/rust-lang/rust-clippy/pull/10328)
118118
* [`needless_borrow`]: No longer panics on ambiguous projections
119119
[#10403](https://github.com/rust-lang/rust-clippy/pull/10403)

0 commit comments

Comments
 (0)