Skip to content

Commit fd5bed7

Browse files
authored
Rollup merge of #88374 - joshlf:patch-2, r=JohnTitor
Fix documentation in Cell
2 parents 0c87288 + e7faaff commit fd5bed7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ impl<T> Cell<T> {
349349
drop(old);
350350
}
351351

352-
/// Swaps the values of two Cells.
352+
/// Swaps the values of two `Cell`s.
353353
/// Difference with `std::mem::swap` is that this function doesn't require `&mut` reference.
354354
///
355355
/// # Examples

0 commit comments

Comments
 (0)