Skip to content

Commit 4771a7b

Browse files
authored
chore: fix prompt error
Missed a blank line, which causes the prompt incorrect like below: ```rust You can keep working on this exercise, or jump into the next one by removing the `I AM NOT DONE` comment: 6 | // Make this code compile by using the proper Rc primitives to express that the sun has multiple owners. 7 | 8 | // I AM NOT DONE 9 | use std::rc::Rc; ```
1 parent 259b434 commit 4771a7b

File tree

1 file changed

+1
-0
lines changed
  • exercises/smart_pointers

1 file changed

+1
-0
lines changed

exercises/smart_pointers/rc1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Make this code compile by using the proper Rc primitives to express that the sun has multiple owners.
77

88
// I AM NOT DONE
9+
910
use std::rc::Rc;
1011

1112
#[derive(Debug)]

0 commit comments

Comments
 (0)