diff --git a/src/Controller/EntityResource.php b/src/Controller/EntityResource.php
index e00340c..d5fae73 100644
--- a/src/Controller/EntityResource.php
+++ b/src/Controller/EntityResource.php
@@ -138,9 +138,9 @@ class EntityResource {
    * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity object.
    * @param string[] $field_names
-   *    (optional) An array of field names. If specified, filters the violations
-   *    list to include only this set of fields. Defaults to NULL,
-   *    which means that all violations will be reported.
+   *   (optional) An array of field names. If specified, filters the violations
+   *   list to include only this set of fields. Defaults to NULL,
+   *   which means that all violations will be reported.
    *
    * @throws \Drupal\jsonapi\Exception\EntityAccessDeniedHttpException
    *   If validation errors are found.
diff --git a/src/ResourceType/ResourceType.php b/src/ResourceType/ResourceType.php
index 8b4b2dc..4f7af8e 100644
--- a/src/ResourceType/ResourceType.php
+++ b/src/ResourceType/ResourceType.php
@@ -269,7 +269,7 @@ class ResourceType {
    * Get the resource path.
    *
    * @return string
-   *   The path to access this resource type. Defaults to /entity_type_id/bundle.
+   *   The path to access this resource type. Default: /entity_type_id/bundle.
    *
    * @see \Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface::getBasePath()
    */
diff --git a/tests/src/Functional/JsonApiRegressionTest.php b/tests/src/Functional/JsonApiRegressionTest.php
index eec169a..0f7537b 100644
--- a/tests/src/Functional/JsonApiRegressionTest.php
+++ b/tests/src/Functional/JsonApiRegressionTest.php
@@ -228,7 +228,7 @@ class JsonApiRegressionTest extends JsonApiFunctionalTestBase {
       'default',
       [
         'target_bundles' => [
-          'journal_issue' => 'journal_issue'
+          'journal_issue' => 'journal_issue',
         ],
       ],
       FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED
@@ -250,8 +250,8 @@ class JsonApiRegressionTest extends JsonApiFunctionalTestBase {
       'title' => 'Test Journal Article',
       'type' => 'journal_article',
       'field_issue' => [
-        'target_id' => $issue_node->id()
-      ]
+        'target_id' => $issue_node->id(),
+      ],
     ]);
     $article_node->setOwner($user);
     $article_node->save();
@@ -269,7 +269,7 @@ class JsonApiRegressionTest extends JsonApiFunctionalTestBase {
           'type' => 'node--journal_article',
           'id' => $article_node->uuid(),
           'attributes' => [
-            'title' => 'My New Article Title'
+            'title' => 'My New Article Title',
           ],
         ],
       ],
