Skip to content

Commit 72c7618

Browse files
authored
Replace unimplemented with todo (#2594)
1 parent 3229fc7 commit 72c7618

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/iterators/exercise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ return value.
1313

1414
```rust
1515
{{#include exercise.rs:offset_differences}}
16-
unimplemented!()
16+
todo!()
1717
}
1818

1919
{{#include exercise.rs:unit-tests}}

src/tuples-and-arrays/exercise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This function only operates on 3x3 matrices.
3131
#![allow(unused_variables, dead_code)]
3232
3333
{{#include exercise.rs:transpose}}
34-
unimplemented!()
34+
todo!()
3535
}
3636
3737
{{#include exercise.rs:tests}}

src/unsafe-rust/exercise.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ functions and methods:
5858
{{#include exercise.rs:ffi}}
5959
6060
{{#include exercise.rs:DirectoryIterator}}
61-
unimplemented!()
61+
todo!()
6262
}
6363
}
6464
6565
{{#include exercise.rs:Iterator}}
66-
unimplemented!()
66+
todo!()
6767
}
6868
}
6969
7070
{{#include exercise.rs:Drop}}
71-
unimplemented!()
71+
todo!()
7272
}
7373
}
7474

0 commit comments

Comments
 (0)