Changed how TODO notes are marked to properly highlight in vim

This commit is contained in:
2023-04-09 23:01:21 +02:00
parent 1a9d12b1f3
commit 3613c2cbdf
14 changed files with 26 additions and 26 deletions

View File

@@ -19,7 +19,7 @@ pub trait OnOff: std::fmt::Debug {
None
}
// @TODO Implement correct error so we can handle them properly
// TODO: Implement correct error so we can handle them properly
fn is_on(&self) -> Result<bool, ErrorCode>;
fn set_on(&mut self, on: bool) -> Result<(), ErrorCode>;
}