Skip to content

Commit a7e6e68

Browse files
authored
Fix typo in "Enum Value Options"
`google.protobufs` does not exist, should be `google.protobuf` - note no `s` in the end
1 parent 3745ff4 commit a7e6e68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/programming-guides/proto3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1670,9 +1670,9 @@ options using extensions.
16701670
The following example shows the syntax for adding these options:
16711671
16721672
```proto
1673-
import "google/protobufs/descriptor.proto";
1673+
import "google/protobuf/descriptor.proto";
16741674
1675-
extend google.protobufs.EnumValueOptions {
1675+
extend google.protobuf.EnumValueOptions {
16761676
optional string string_name = 123456789;
16771677
}
16781678

0 commit comments

Comments
 (0)