We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a7567c commit 1d81cf2Copy full SHA for 1d81cf2
content/best-practices/dos-donts.md
@@ -343,7 +343,7 @@ message Photo {
343
}
344
```
345
346
-## **Do** Use java_outer_classname {#java-outer-classname}
+## **Do** Use java_outer_classname (before Edition 2024) {#java-outer-classname}
347
348
Every proto schema definition file should set option `java_outer_classname` to
349
the `.proto` file name converted to TitleCase with the '.' removed. For example,
@@ -352,3 +352,6 @@ the file `student_record_request.proto` should set:
352
```java
353
option java_outer_classname = "StudentRecordRequestProto";
354
355
+
356
+The default behavior of Edition 2024 files has been aligned with this
357
+recommendation, so no option should be set when using Edition 2024 or later.
0 commit comments