def do_help_implant(bot, user_name, channel_name):
    implant_doc_report = get_implants_documentation(bot, user_name, channel_name)
    help_info = '*Valid commands:*\n{}'.format(topics_to_message(implant_doc_report))
    return help_info
def do_help_implant(bot, user_name, channel_name):
    valid_regexes = get_implants_documentation(bot, user_name, channel_name)
    help_info = '*Valid commands:*\n{}'.format(topics_to_message(valid_regexes))
    return help_info