Fix CBS tag class docs.

Change-Id: Ia7b3b5d9ce833a9cdfb94c8e0923f3cf17555fdd
Reviewed-on: https://boringssl-review.googlesource.com/23449
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/include/openssl/bytestring.h b/include/openssl/bytestring.h
index ad0c928..3906809 100644
--- a/include/openssl/bytestring.h
+++ b/include/openssl/bytestring.h
@@ -176,9 +176,8 @@
 // tag.
 #define CBS_ASN1_CONSTRUCTED (0x20u << CBS_ASN1_TAG_SHIFT)
 
-// The following values specify the constructed bit or tag class and may be ORed
-// into a tag number to produce the final tag. If none is used, the tag will be
-// UNIVERSAL.
+// The following values specify the tag class and may be ORed into a tag number
+// to produce the final tag. If none is used, the tag will be UNIVERSAL.
 #define CBS_ASN1_UNIVERSAL (0u << CBS_ASN1_TAG_SHIFT)
 #define CBS_ASN1_APPLICATION (0x40u << CBS_ASN1_TAG_SHIFT)
 #define CBS_ASN1_CONTEXT_SPECIFIC (0x80u << CBS_ASN1_TAG_SHIFT)