115which are effectively tests for a single variant.
116
117▶### Use "TODO" comments for things you don't want to forget
118
119As a useful tool to yourself, you can insert a `// TODO` comment
· · ·
119▶As a useful tool to yourself, you can insert a `// TODO` comment
120for something that you want to get back to before you land your PR:
121
· · ·
123fn do_something() {
124 if something_else {
125▶ unimplemented!(); // TODO write this
126 }
127}
· · ·
128```
129
130▶The tidy script will report an error for a `// TODO` comment, so this
131code would not be able to land until the TODO is fixed (or removed).
132
· · ·
131▶code would not be able to land until the TODO is fixed (or removed).
132
133This can also be useful in a PR as a way to signal from one commit that you are
+ 1 more matches in this file