chore: added more descriptive TODOs

This commit is contained in:
TK Buristrakul
2022-11-24 19:39:54 +00:00
parent be0b7e084e
commit a315f2fefb
4 changed files with 10 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ trait AppendBar {
}
impl AppendBar for String {
//Add your code here
// TODO: Implement `AppendBar` for type `String`.
}
fn main() {

View File

@@ -17,7 +17,7 @@ trait AppendBar {
fn append_bar(self) -> Self;
}
//TODO: Add your code here
// TODO: Implement trait `AppendBar` for a vector of strings.
#[cfg(test)]
mod tests {