diff --git a/core/modules/language/language.admin.inc b/core/modules/language/language.admin.inc
index 590240a4b8f..19e9f4fab8c 100644
--- a/core/modules/language/language.admin.inc
+++ b/core/modules/language/language.admin.inc
@@ -199,7 +199,7 @@ function template_preprocess_language_content_settings_table(&$variables) {
* - build: A render element representing a table of bundle content language
* settings for a particular entity type.
*
- * @ingroup themable
+ * @ingroup themeable
*/
function theme_language_content_settings_table($variables) {
return '
' . $variables['build']['#title'] . '
' . drupal_render($variables['build']);
diff --git a/core/modules/responsive_image/responsive_image.module b/core/modules/responsive_image/responsive_image.module
index 695d2cb70e0..ca7a3ed45b7 100644
--- a/core/modules/responsive_image/responsive_image.module
+++ b/core/modules/responsive_image/responsive_image.module
@@ -165,8 +165,6 @@ function theme_responsive_image_formatter($variables) {
* - attributes: Associative array of attributes to be placed in the img tag.
* - style_name: The name of the style to be used as a fallback image.
* - responsive_image_style_id: The ID of the responsive image style.
- *
- * @ingroup themeable
*/
function template_preprocess_responsive_image(&$variables) {
// Make sure that width and height are proper values
diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc
index 61146b45df1..eaa5a8397fe 100644
--- a/core/modules/update/update.report.inc
+++ b/core/modules/update/update.report.inc
@@ -17,8 +17,6 @@ use Drupal\Core\Url;
* @param array $variables
* An associative array containing:
* - data: An array of data about each project's status.
- *
- * @ingroup themeable
*/
function template_preprocess_update_report(&$variables) {
$data = $variables['data'];
@@ -127,8 +125,6 @@ function template_preprocess_update_report(&$variables) {
* - includes_status: An array of sub-project statuses where the keys are the
* shortnames of each project and the values are UPDATE_* integer constants
* as defined in update.module.
- *
- * @ingroup themeable
*/
function template_preprocess_update_project_status(&$variables) {
// Storing by reference because we are sorting the project values.
diff --git a/core/modules/views/views.theme.inc b/core/modules/views/views.theme.inc
index 0f858a2d708..76a799d57c7 100644
--- a/core/modules/views/views.theme.inc
+++ b/core/modules/views/views.theme.inc
@@ -208,6 +208,8 @@ function template_preprocess_views_view_fields(&$variables) {
* - wrapper_suffix: A string added to the end of the fields.
*
* @see template_preprocess_views_view_fields()
+ *
+ * @ingroup themeable
*/
function theme_views_view_fields($variables) {
$fields = $variables['fields'];
@@ -252,6 +254,8 @@ function template_preprocess_views_view_grouping(&$variables) {
* Interesting bits of info:
* $field->field_alias says what the raw value in $row will be. Reach it like
* this: @code { $row->{$field->field_alias} @endcode
+ *
+ * @ingroup themeable
*/
function theme_views_view_field($variables) {
return $variables['output'];
diff --git a/core/modules/views_ui/views_ui.theme.inc b/core/modules/views_ui/views_ui.theme.inc
index d0a2d7f4669..f2f2b670c70 100644
--- a/core/modules/views_ui/views_ui.theme.inc
+++ b/core/modules/views_ui/views_ui.theme.inc
@@ -92,6 +92,8 @@ function template_preprocess_views_ui_view_info(&$variables) {
/**
* Theme the build group filter form.
+ *
+ * @ingroup themeable
*/
function theme_views_ui_build_group_filter_form($variables) {
$form = $variables['form'];