1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-04 13:50:28 +02:00

Replace unimplemented with todo (#2594)

This commit is contained in:
Nicole L
2025-02-06 12:35:28 -08:00
committed by GitHub
parent 3229fc7c05
commit 72c7618cb4
3 changed files with 5 additions and 5 deletions

View File

@ -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!()
}
}