Small change in the documentation of Mac parameters.

PiperOrigin-RevId: 488919927
Change-Id: Ie00cf5076b9c1673e4aa85dee7870370d07e7a09
diff --git a/src/main/java/com/google/crypto/tink/mac/AesCmacParameters.java b/src/main/java/com/google/crypto/tink/mac/AesCmacParameters.java
index d2678d9..8212e33 100644
--- a/src/main/java/com/google/crypto/tink/mac/AesCmacParameters.java
+++ b/src/main/java/com/google/crypto/tink/mac/AesCmacParameters.java
@@ -28,8 +28,8 @@
   /**
    * Describes details of the mac computation.
    *
-   * <p>The usual AES CMAC key is used for variant "NO_PREFIX". Other variants slightly change how
-   * the mac is computed, or add a prefix to every computation depending on the key id.
+   * <p>The standard AES CMAC key is used for variant "NO_PREFIX". Other variants slightly change
+   * how the mac is computed, or add a prefix to every computation depending on the key id.
    */
   @Immutable
   public static final class Variant {
diff --git a/src/main/java/com/google/crypto/tink/mac/HmacParameters.java b/src/main/java/com/google/crypto/tink/mac/HmacParameters.java
index 8b63992..4d93da1 100644
--- a/src/main/java/com/google/crypto/tink/mac/HmacParameters.java
+++ b/src/main/java/com/google/crypto/tink/mac/HmacParameters.java
@@ -35,8 +35,8 @@
   /**
    * Describes details of the mac computation.
    *
-   * <p>The usual HMAC key is used for variant "NO_PREFIX". Other variants slightly change how the
-   * mac is computed, or add a prefix to every computation depending on the key id.
+   * <p>The standard HMAC key is used for variant "NO_PREFIX". Other variants slightly change how
+   * the mac is computed, or add a prefix to every computation depending on the key id.
    */
   @Immutable
   public static final class Variant {