Another option that I don't see here is to just extract the route function out with a function name. If all you are trying to do is writing self-documenting code.
function updateToDo(req, res, next) { /*do router stuff*/};
router.put('/', updateToDo);