Skip to content

Commit 8a5d10c

Browse files
committed
more wrapping
1 parent 13b97ab commit 8a5d10c

File tree

1 file changed

+3
-1
lines changed
  • code/ch01-01-building-an-intuition/cell-lengthener/src

1 file changed

+3
-1
lines changed

code/ch01-01-building-an-intuition/cell-lengthener/src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ fn main() {}
44
use std::collections::HashSet;
55

66
// ANCHOR: all
7-
fn hash_set_lengthener<'a, 'b>(s: &'a mut HashSet<&'b str>) -> &'a mut HashSet<&'static str> {
7+
fn hash_set_lengthener<'a, 'b>(
8+
s: &'a mut HashSet<&'b str>,
9+
) -> &'a mut HashSet<&'static str> {
810
s
911
}
1012

0 commit comments

Comments
 (0)