Skip to content

Commit 8c9916f

Browse files
Internal change
PiperOrigin-RevId: 808572449
1 parent 1b3616d commit 8c9916f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

content/reference/go/opaque-faq.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ make the Opaque API the default.
3535

3636
## How Do I Enable the New Opaque API for My Messages? {#enable}
3737

38-
With Protobuf Edition 2023 (current at the time of writing), you can select the
39-
Opaque API by setting the `api_level` editions feature to `API_OPAQUE` in your
40-
`.proto` file. This can be set per file or per message:
38+
Starting with Protobuf Edition 2023, you can select the Opaque API by setting
39+
the `api_level` editions feature to `API_OPAQUE` in your `.proto` file. This can
40+
be set per file or per message:
4141

4242
```proto
4343
edition = "2023";
@@ -50,7 +50,7 @@ option features.(pb.go).api_level = API_OPAQUE;
5050
message LogEntry { … }
5151
```
5252

53-
Protobuf Edition 2024 will default to the Opaque API, meaning you will not need
53+
Protobuf Edition 2024 defaults to the Opaque API, meaning you will not need
5454
extra imports or options anymore:
5555

5656
```proto
@@ -61,8 +61,6 @@ package log;
6161
message LogEntry { … }
6262
```
6363

64-
The release date estimate for Protobuf Edition 2024 is early 2025.
65-
6664
For your convenience, you can also override the default API level with a
6765
`protoc` command-line flag:
6866

0 commit comments

Comments
 (0)