File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ pub fn replace(
48
48
[ "course" , "outline" ] if course. is_some ( ) => {
49
49
course. unwrap ( ) . schedule ( )
50
50
}
51
- [ "course" , "outline" , course_name] => {
51
+ [ "course" , "outline" , course_name @ ..] => {
52
+ let course_name = course_name. join ( " " ) ;
52
53
let Some ( course) = courses. find_course ( course_name) else {
53
54
return format ! ( "not found - {}" , captures[ 0 ] . to_string( ) ) ;
54
55
} ;
Original file line number Diff line number Diff line change @@ -72,6 +72,16 @@ cargo run
72
72
73
73
{{%course outline Concurrency}}
74
74
75
+ ### Idiomatic Rust
76
+
77
+ The [ Idiomatic Rust] ( ../idiomatic/welcome.md ) deep dive is a 2-day class on Rust
78
+ idioms and patterns.
79
+
80
+ You should be familiar with the material in
81
+ [ Rust Fundamentals] ( ../welcome-day-1.md ) before starting this course.
82
+
83
+ {{%course outline Idiomatic Rust}}
84
+
75
85
## Format
76
86
77
87
The course is meant to be very interactive and we recommend letting the
You can’t perform that action at this time.
0 commit comments