Skip to content

Commit d4f393d

Browse files
Minor grammatical changes.
PiperOrigin-RevId: 914807637
1 parent 25c59fb commit d4f393d

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

content/programming-guides/style.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,14 @@ Package names should attempt to be a short but unique name based on the project
9696
name. The package should not be coupled with the directory path, especially when
9797
the files are in a deeply nested path.
9898

99-
Package names should not be Java style packages, even when located in Java or
100-
Kotlin directory. Do not use any of `com.company.x.y`, `com_company_x_y`, or
101-
`java_com_company_x_y`. Instead use `x.y` as the package and set `java_package =
99+
Package names should not use Java-style naming, even when located in a Java or
100+
Kotlin directory. Do not use any of the following styles:
101+
102+
* `com.company.x.y`
103+
* `com_company_x_y`
104+
* `java_com_company_x_y`
105+
106+
Instead, use `x.y` for the `package` name and set `java_package =
102107
"com.company.x.y"`.
103108

104109
## Message Names {#message-names}

0 commit comments

Comments
 (0)