Code snippet that can be used to remove description in file upload help drupal 8.
By default is like this:
to remove description, I'll ovveride template_preprocess_file_upload_help() function like this:
/**
* @param $variables
*/
function mytheme_preprocess_file_upload_help(&$variables)
{
unset($variables['descriptions']);
}
the result is like this: