diff --git a/core/modules/forum/forum.admin.inc b/core/modules/forum/forum.admin.inc index d6f90a2..44f71b9 100644 --- a/core/modules/forum/forum.admin.inc +++ b/core/modules/forum/forum.admin.inc @@ -13,8 +13,7 @@ * @param $type * What is being added. Possible values are 'forum' and 'container'. * @param \Drupal\taxonomy\Plugin\Core\Entity\Term $term - * (optional) A forum or container term to be - * edited. Defaults to NULL + * (optional) A forum or container term to be edited. Defaults to NULL. * * @return * A form for creating a new forum or container. diff --git a/core/modules/path/lib/Drupal/path/Type/PathItem.php b/core/modules/path/lib/Drupal/path/Type/PathItem.php index fde8386..f853d88 100644 --- a/core/modules/path/lib/Drupal/path/Type/PathItem.php +++ b/core/modules/path/lib/Drupal/path/Type/PathItem.php @@ -40,4 +40,5 @@ public function getPropertyDefinitions() { } return static::$propertyDefinitions; } + } diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php index ad4d6a1..c6f4c8c 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageController.php @@ -115,7 +115,7 @@ public function resetCache(array $ids = NULL) { } /** - * Overrides \Drupal\Core\Entity\DataBaseStorageControllerNG::basePropertyDefinitions(). + * Overrides \Drupal\Core\Entity\DatabaseStorageControllerNG::baseFieldDefintions(). */ public function baseFieldDefinitions() { $properties['tid'] = array( @@ -150,7 +150,7 @@ public function baseFieldDefinitions() { 'description' => t('A description of the term'), 'type' => 'string_field', ); - // @todo: Combine with description. + // @todo Combine with description. $properties['format'] = array( 'label' => t('Description format'), 'description' => t('The filter format ID of the description.'), diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index f8527c4..08dd87b 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -369,7 +369,7 @@ function taxonomy_menu() { } /** - * Access callback for creating a new taxonomy term. + * Access callback: Creates a new taxonomy term. * * @param \Drupal\taxonomy\Plugin\Core\Entity\Vocabulary $vocabulary * The vocabulary entity that represents the term bundle.