@@ -2197,7 +2197,8 @@ definitions:
21972197
21982198 Note: this functionality is not currently available in the official
21992199 protobuf release, and it is not used for type URLs beginning with
2200- type.googleapis.com.
2200+ type.googleapis.com. As of May 2023, there are no widely used type server
2201+ implementations and no plans to implement one.
22012202
22022203 Schemes other than `http`, `https` (or the empty scheme) might be
22032204 used with implementation specific semantics.
@@ -2232,7 +2233,7 @@ definitions:
22322233 foo = any.unpack(Foo.getDefaultInstance());
22332234 }
22342235
2235- Example 3: Pack and unpack a message in Python.
2236+ Example 3: Pack and unpack a message in Python.
22362237
22372238 foo = Foo(...)
22382239 any = Any()
@@ -2242,7 +2243,7 @@ definitions:
22422243 any.Unpack(foo)
22432244 ...
22442245
2245- Example 4: Pack and unpack a message in Go
2246+ Example 4: Pack and unpack a message in Go
22462247
22472248 foo := &pb.Foo{...}
22482249 any, err := anypb.New(foo)
@@ -2262,7 +2263,7 @@ definitions:
22622263 name "y.z".
22632264
22642265 JSON
2265-
2266+ ====
22662267 The JSON representation of an `Any` value uses the regular
22672268 representation of the deserialized, embedded message, with an
22682269 additional field `@type` which contains the type URL. Example:
0 commit comments