summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorKevin Wan <wanjunfeng@gmail.com>2023-01-23 12:16:51 +0800
committerGitHub <noreply@github.com>2023-01-23 12:16:51 +0800
commit4771a7b9e70a05820bd418c155ecee5beacb2771 (patch)
tree74fdb3208ce7660a7db049cbe435a4dd09573fae /exercises
parent259b434f20f45184618d151a74d6882ae7c7315b (diff)
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; ```
Diffstat (limited to 'exercises')
-rw-r--r--exercises/smart_pointers/rc1.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/smart_pointers/rc1.rs b/exercises/smart_pointers/rc1.rs
index 9b907fd..d62f361 100644
--- a/exercises/smart_pointers/rc1.rs
+++ b/exercises/smart_pointers/rc1.rs
@@ -6,6 +6,7 @@
// Make this code compile by using the proper Rc primitives to express that the sun has multiple owners.
// I AM NOT DONE
+
use std::rc::Rc;
#[derive(Debug)]