diff --git a/core/modules/media/media.module b/core/modules/media/media.module
index 5df059c..dc4bcbb 100644
--- a/core/modules/media/media.module
+++ b/core/modules/media/media.module
@@ -20,18 +20,30 @@ function media_help($route_name, RouteMatchInterface $route_match) {
   switch ($route_name) {
     case 'help.page.media':
       $output = '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Media module manages the creation, editing, deletion, settings and display of media. Items are typically images, documents, slideshows, YouTube videos, tweets, Instagram photos, etc. You can reference media items from any other content on your site. For more information, see the <a href=":media">online documentation for the Media module</a>.', [':media' => 'https://www.drupal.org/docs/8/core/modules/media']) . '</p>';
+      $output .= '<p>' . t('The Media module manages the creation, editing, deletion, settings, and display of media. Items are typically images, documents, slideshows, YouTube videos, tweets, Instagram photos, etc. You can reference media items from any other content on your site. For more information, see the <a href=":media">online documentation for the Media module</a>.', [':media' => 'https://www.drupal.org/docs/8/core/modules/media']) . '</p>';
       $output .= '<h3>' . t('Uses') . '</h3>';
       $output .= '<dl>';
       $output .= '<dt>' . t('Creating media items') . '</dt>';
       $output .= '<dd>' . t('When a new media item is created, the Media module records basic information about it, including the author, date of creation, and the <a href=":media-type">media type</a>. It also manages the <em>publishing options</em>, which define whether or not the item is published. Default settings can be configured for each type of media on your site.', [':media-type' => Url::fromRoute('entity.media_type.collection')->toString()]) . '</dd>';
+      $output .= '<dt>' . t('Listing media items') . '</dt>';
+      $output .= '<dd>' . t('Media items are listed at <a href="/admin/content/media">Content > Media</a>.') . '</dd>';
       $output .= '<dt>' . t('Creating custom media types') . '</dt>';
       $output .= '<dd>' . t('The Media module gives users with the <em>Administer media types</em> permission the ability to <a href=":media-new">create new media types</a> in addition to the default ones already configured. Each media type has an associated media source (such as the image source) which support thumbnail generation and metadata extraction. Fields managed by the <a href=":field">Field module</a> may be added for storing that metadata, such as width and height, as well as any other associated values.', [':media-new' => Url::fromRoute('entity.media_type.add_form')->toString(), ':field' => Url::fromRoute('help.page', ['name' => 'field'])->toString()]) . '</dd>';
       $output .= '<dt>' . t('Creating revisions') . '</dt>';
       $output .= '<dd>' . t('The Media module also enables you to create multiple versions of any media item, and revert to older versions using the <em>Revision information</em> settings.') . '</dd>';
       $output .= '<dt>' . t('User permissions') . '</dt>';
       $output .= '<dd>' . t('The Media module makes a number of permissions available, which can be set by role on the <a href=":permissions">permissions page</a>.', [':permissions' => Url::fromRoute('user.admin_permissions', [], ['fragment' => 'module-media'])->toString()]) . '</dd>';
+      $output .= '<dt>' . t('Adding media to other content') . '</dt>';
+      $output .= '<dd>' . t('Users with permission to administer content types can add media support by adding a media reference field to the content type on the content type administration page. (The same is true of block types, taxonomy terms, user profiles, and other content that supports fields.) A media reference field can refer to any configured media type. It is possible to allow multiple media types in the same field.') . '</dd>';
       $output .= '</dl>';
+      $output .= '<h3>' . t('Differences between Media, File, and Image reference fields') . '</h3>';
+      $output .= '<p>' . t('There are several differences between the Media, File, and Image reference fields. When in doubt, it is recommended to use a media reference.') . '</p>';
+      $output .= '<ul>';
+      $output .= '<li>' . t('The media reference fields can contain references to multiple media types in the same field. This makes it possible to reference an image and video in the same field. The file and image reference fields only allow a single type per field.') . '</li>';
+      $output .= '<li>' . t('Besides local file uploads, the media reference fields allow remote media types to be configured. This can be used to reference a Youtube video for example. The file and image reference field can only contain local file uploads.') . '</li>';
+      $output .= '<li>' . t('Since media types are fieldable, the media reference fields can allow additional metadata to be added. File and image reference fields have a fixed set of allowed metadata. The file and image media types are configured to use file and image reference fields. Media provides an extra layer to store and add metadata related to the files and images.') . '</li>';
+      $output .= '<li>' . t('Existing media items can be reused on any other content items with a media reference field. The file and image reference fields only allow creating new files and images.') . '</li>';
+      $output .= '</ul>';
       return $output;
   }
 }
