Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions checker/src/main/java/dev/cel/checker/ProtoTypeMask.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public ProtoTypeMask withFieldsAsVariableDeclarations() {
* treated as variable identifiers bound to the protobuf field name and its associated field type.
*
* <p>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:
*
* <ul>
Expand All @@ -99,7 +99,7 @@ public static ProtoTypeMask of(String typeName, FieldMask fieldMask) {
* Construct a new {@code ProtoTypeMask} which exposes all fields in the given {@code typeName}
* for use within CEL expressions.
*
* <p>The {@code typeName} should be a fully-qualified path, e.g., {@code
* <p>The {@code typeName} should be a fully-qualified path, e.g. {@code
* "google.rpc.context.AttributeContext"}.
*
* <p>All top-level fields in the given {@code typeName} should be treated as variable identifiers
Expand All @@ -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.
*
* <p>The {@code typeName} should be a fully-qualified path, e.g., {@code
* <p>The {@code typeName} should be a fully-qualified path, e.g. {@code
* "google.rpc.context.AttributeContext"}.
*/
public static ProtoTypeMask ofAllFieldsHidden(String fullyQualifiedTypeName) {
Expand Down