From 17a2820da8ad8ea23d336129f32e060e5746b047 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 19 Sep 2020 14:32:41 +1000 Subject: Cleanup: consistent TODO/FIXME formatting for names Following the most widely used convention for including todo's in the code, that is: `TODO(name):`, `FIXME(name)` ... etc. --- source/blender/editors/mesh/editmesh_path.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/mesh/editmesh_path.c') diff --git a/source/blender/editors/mesh/editmesh_path.c b/source/blender/editors/mesh/editmesh_path.c index e7e27c2189f..2cb8da37260 100644 --- a/source/blender/editors/mesh/editmesh_path.c +++ b/source/blender/editors/mesh/editmesh_path.c @@ -698,10 +698,9 @@ static int edbm_shortest_path_pick_invoke(bContext *C, wmOperator *op, const wmE /* If nothing is selected, let's select the picked vertex/edge/face. */ if ((vc.em->bm->totvertsel == 0) && (eve || eed || efa)) { - /* TODO (dfelinto) right now we try to find the closest element twice. + /* TODO(dfelinto): right now we try to find the closest element twice. * The ideal is to refactor EDBM_select_pick so it doesn't - * have to pick the nearest vert/edge/face again. - */ + * have to pick the nearest vert/edge/face again. */ EDBM_select_pick(C, event->mval, true, false, false); return OPERATOR_FINISHED; } -- cgit v1.2.3