TODO
comments should be accompanied by details or assignees and not left empty so that
they can be addressed later, and when it is referenced in the future, it will help define
the scope of the work.
// TODO
doWorkCtx(nil, x(), y())
// TODO
doWorkCtx(context.TODO(), x(), y())
// TODO(SS): pass context.Background() instead of nil
doWorkCtx(nil, x(), y())
// TODO(AG): Replace context.TODO() with context.Background()
doWorkCtx(context.TODO(), x(), y())