Skip to content

Commit aeaa80f

Browse files
sadiquipedrodesu
andauthored
fix(box_recursion): fix expected code (#3027)
Co-authored-by: Pedro Ferreira <me.pedro.ferreira@gmail.com>
1 parent 0a3cd20 commit aeaa80f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

subjects/box_recursion/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ pub struct WorkEnvironment {
3030
pub grade: Link,
3131
}
3232

33-
pub type Link;
33+
pub type Link = _; // Complete type alias
3434

3535
#[derive(Debug)]
3636
pub struct Worker {
37-
pub role: String,
37+
pub role: Role,
3838
pub name: String,
3939
pub next: Link,
4040
}

0 commit comments

Comments
 (0)