diff --git a/checker/src/main/java/dev/cel/checker/ProtoTypeMask.java b/checker/src/main/java/dev/cel/checker/ProtoTypeMask.java index c9ff89989..ec1c31840 100644 --- a/checker/src/main/java/dev/cel/checker/ProtoTypeMask.java +++ b/checker/src/main/java/dev/cel/checker/ProtoTypeMask.java @@ -75,7 +75,7 @@ public ProtoTypeMask withFieldsAsVariableDeclarations() { * treated as variable identifiers bound to the protobuf field name and its associated field type. * *
A {@code FieldMask} contains one or more {@code paths} which contain identifier characters - * that have been dot delimited, e.g.resource.name, request.auth.claims. Here are a few things to + * that have been dot delimited, e.g. resource.name, request.auth.claims. Here are a few things to * keep in mind: * *
The {@code typeName} should be a fully-qualified path, e.g., {@code + *
The {@code typeName} should be a fully-qualified path, e.g. {@code * "google.rpc.context.AttributeContext"}. * *
All top-level fields in the given {@code typeName} should be treated as variable identifiers @@ -113,7 +113,7 @@ public static ProtoTypeMask ofAllFields(String fullyQualifiedTypeName) { * Construct a new {@code ProtoTypeMask} which hides all fields in the given {@code typeName} for * use within CEL expressions. * - *
The {@code typeName} should be a fully-qualified path, e.g., {@code + *
The {@code typeName} should be a fully-qualified path, e.g. {@code * "google.rpc.context.AttributeContext"}. */ public static ProtoTypeMask ofAllFieldsHidden(String fullyQualifiedTypeName) {