Skip to content

Commit df4623e

Browse files
committed
trophy case: consistent wording (X doing Y)
1 parent 4d934fb commit df4623e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ Definite bugs found:
269269
* [The Unix allocator calling `posix_memalign` in an invalid way](https://github.com/rust-lang/rust/issues/62251)
270270
* [`getrandom` calling the `getrandom` syscall in an invalid way](https://github.com/rust-random/getrandom/pull/73)
271271
* [`Vec`](https://github.com/rust-lang/rust/issues/69770) and [`BTreeMap`](https://github.com/rust-lang/rust/issues/69769) leaking memory under some (panicky) conditions
272-
* [Memory leak in `beef`](https://github.com/maciejhirsz/beef/issues/12)
273-
* [Invalid use of undefined memory in `EbrCell`](https://github.com/Firstyear/concread/commit/b15be53b6ec076acb295a5c0483cdb4bf9be838f#diff-6282b2fc8e98bd089a1f0c86f648157cR229)
274-
* [Unaligned pointer access in TiKV](https://github.com/tikv/tikv/issues/7613)
275-
* [Dangling shared reference in `servo_arc`](https://github.com/servo/servo/issues/26357)
272+
* [`beef` leaking memory](https://github.com/maciejhirsz/beef/issues/12)
273+
* [`EbrCell` using uninitialized memory incorrectly](https://github.com/Firstyear/concread/commit/b15be53b6ec076acb295a5c0483cdb4bf9be838f#diff-6282b2fc8e98bd089a1f0c86f648157cR229)
274+
* [TiKV performing an unaligned pointer access](https://github.com/tikv/tikv/issues/7613)
275+
* [`servo_arc` creating a dangling shared reference](https://github.com/servo/servo/issues/26357)
276276

277277
Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows is currently just an experiment):
278278

@@ -281,7 +281,7 @@ Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows
281281
* [`LinkedList` creating overlapping mutable references](https://github.com/rust-lang/rust/pull/60072)
282282
* [`Vec::push` invalidating existing references into the vector](https://github.com/rust-lang/rust/issues/60847)
283283
* [`align_to_mut` violating uniqueness of mutable references](https://github.com/rust-lang/rust/issues/68549)
284-
* [Aliasing mutable references in `sized-chunks`](https://github.com/bodil/sized-chunks/issues/8)
284+
* [`sized-chunks` creating aliasing mutable references](https://github.com/bodil/sized-chunks/issues/8)
285285
* [`String::push_str` invalidating existing references into the string](https://github.com/rust-lang/rust/issues/70301)
286286
* [`ryu` using raw pointers outside their valid memory area](https://github.com/dtolnay/ryu/issues/24)
287287
* [ink! creating overlapping mutable references](https://github.com/rust-lang/miri/issues/1364)

0 commit comments

Comments
 (0)