Skip to content

Commit

Permalink
Replace unimplemented with todo
Browse files Browse the repository at this point in the history
  • Loading branch information
randomPoison committed Jan 30, 2025
1 parent deae2e2 commit 13f873b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 13f873b

Please sign in to comment.