From 2411a137f0921ddd57b3ad349159e91f1e3a0b5a Mon Sep 17 00:00:00 2001
From: xjm <xjm@65776.no-reply.drupal.org>
Date: Sat, 16 Jul 2016 18:45:20 +0200
Subject: [PATCH] Issue #1738622 by Mile23, Cottser, jhodgdon: Documentation
 cleanup for UUID API

---
 core/lib/Drupal/Component/Uuid/Com.php  | 2 +-
 core/lib/Drupal/Component/Uuid/Pecl.php | 2 +-
 core/lib/Drupal/Component/Uuid/Uuid.php | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/lib/Drupal/Component/Uuid/Com.php b/core/lib/Drupal/Component/Uuid/Com.php
index 070113297fbc..f9305f5014c1 100644
--- a/core/lib/Drupal/Component/Uuid/Com.php
+++ b/core/lib/Drupal/Component/Uuid/Com.php
@@ -3,7 +3,7 @@
 namespace Drupal\Component\Uuid;
 
 /**
- * UUID implementation using the Windows internal GUID extension.
+ * Generates a UUID using the Windows internal GUID extension.
  *
  * @see http://php.net/com_create_guid
  */
diff --git a/core/lib/Drupal/Component/Uuid/Pecl.php b/core/lib/Drupal/Component/Uuid/Pecl.php
index 88e0c6356ae6..554d6a2110a6 100644
--- a/core/lib/Drupal/Component/Uuid/Pecl.php
+++ b/core/lib/Drupal/Component/Uuid/Pecl.php
@@ -3,7 +3,7 @@
 namespace Drupal\Component\Uuid;
 
 /**
- * UUID implementation using the PECL extension.
+ * Generates a UUID using the PECL extension.
  */
 class Pecl implements UuidInterface {
 
diff --git a/core/lib/Drupal/Component/Uuid/Uuid.php b/core/lib/Drupal/Component/Uuid/Uuid.php
index 0bd022af0806..c6ba2ec980ec 100644
--- a/core/lib/Drupal/Component/Uuid/Uuid.php
+++ b/core/lib/Drupal/Component/Uuid/Uuid.php
@@ -13,7 +13,7 @@ class Uuid {
   const VALID_PATTERN = '[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}';
 
   /**
-   * Checks that a string appears to be in the format of a UUID.
+   * Checks whether a string appears to be in the format of a UUID.
    *
    * Implementations should not implement validation, since UUIDs should be in
    * a consistent format across all implementations.
-- 
GitLab