Comments have to be consistent with the [docs](https://github.com/AlexandreHiroyuki/DataTomeDocs) Example: ```cpp /** * Do something. * @param int data. * @returns int data multiplied by 100. */ int do_something(int data) { return data * 100; } ```