1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-07 06:55:42 +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

@ -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}}