Skip to content

Commit ef23394

Browse files
committed
Make link shorted by removing the anchor
1 parent 161c0f3 commit ef23394

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hole.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ fn deallocate(mut hole: &mut Hole, addr: usize, mut size: usize) {
286286
/// By default, references are reborrowed instead of moved (equivalent to `&mut *reference`). This
287287
/// function forces a move.
288288
///
289-
/// for more information, see:
290-
/// https://bluss.github.io/rust/fun/2015/10/11/stuff-the-identity-function-does/#id-forces-references-to-move
289+
/// for more information, see section “id Forces References To Move” in:
290+
/// https://bluss.github.io/rust/fun/2015/10/11/stuff-the-identity-function-does/
291291
fn move_helper<T>(x: T) -> T {
292292
x
293293
}

0 commit comments

Comments
 (0)