Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/iterators/exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ return value.

```rust
{{#include exercise.rs:offset_differences}}
unimplemented!()
todo!()
}

{{#include exercise.rs:unit-tests}}
Expand Down
2 changes: 1 addition & 1 deletion src/tuples-and-arrays/exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This function only operates on 3x3 matrices.
#![allow(unused_variables, dead_code)]

{{#include exercise.rs:transpose}}
unimplemented!()
todo!()
}

{{#include exercise.rs:tests}}
Expand Down
6 changes: 3 additions & 3 deletions src/unsafe-rust/exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ functions and methods:
{{#include exercise.rs:ffi}}

{{#include exercise.rs:DirectoryIterator}}
unimplemented!()
todo!()
}
}

{{#include exercise.rs:Iterator}}
unimplemented!()
todo!()
}
}

{{#include exercise.rs:Drop}}
unimplemented!()
todo!()
}
}

Expand Down