Skip to content

Commit cc130d7

Browse files
CEL Dev Teamcopybara-github
authored andcommitted
Fix Typos: add space after "e.g." and remove commas after "e.g.".
PiperOrigin-RevId: 821835750
1 parent 7caf057 commit cc130d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

checker/src/main/java/dev/cel/checker/ProtoTypeMask.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public ProtoTypeMask withFieldsAsVariableDeclarations() {
7575
* treated as variable identifiers bound to the protobuf field name and its associated field type.
7676
*
7777
* <p>A {@code FieldMask} contains one or more {@code paths} which contain identifier characters
78-
* that have been dot delimited, e.g.resource.name, request.auth.claims. Here are a few things to
78+
* that have been dot delimited, e.g. resource.name, request.auth.claims. Here are a few things to
7979
* keep in mind:
8080
*
8181
* <ul>
@@ -99,7 +99,7 @@ public static ProtoTypeMask of(String typeName, FieldMask fieldMask) {
9999
* Construct a new {@code ProtoTypeMask} which exposes all fields in the given {@code typeName}
100100
* for use within CEL expressions.
101101
*
102-
* <p>The {@code typeName} should be a fully-qualified path, e.g., {@code
102+
* <p>The {@code typeName} should be a fully-qualified path, e.g. {@code
103103
* "google.rpc.context.AttributeContext"}.
104104
*
105105
* <p>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) {
113113
* Construct a new {@code ProtoTypeMask} which hides all fields in the given {@code typeName} for
114114
* use within CEL expressions.
115115
*
116-
* <p>The {@code typeName} should be a fully-qualified path, e.g., {@code
116+
* <p>The {@code typeName} should be a fully-qualified path, e.g. {@code
117117
* "google.rpc.context.AttributeContext"}.
118118
*/
119119
public static ProtoTypeMask ofAllFieldsHidden(String fullyQualifiedTypeName) {

0 commit comments

Comments
 (0)