Fix comment syntax in any.proto (#8792)

* Fix comment syntax in any.proto

Remove extra spaces which cause incorrect indentation in godoc.
Remove the "====" style title which is not rendered by godoc.

* Run ./generate_descriptor_proto.sh
pull/9170/head
Chris Bainbridge 3 years ago committed by GitHub
parent 1d2e8d9302
commit 65852d6e9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
  2. 2
      objectivec/GPBAny.pbobjc.h
  3. 1
      php/src/Google/Protobuf/Any.php
  4. 2
      src/google/protobuf/any.proto

@ -95,7 +95,7 @@ namespace Google.Protobuf.WellKnownTypes {
/// name "y.z". /// name "y.z".
/// ///
/// JSON /// JSON
/// ==== ///
/// The JSON representation of an `Any` value uses the regular /// The JSON representation of an `Any` value uses the regular
/// representation of the deserialized, embedded message, with an /// representation of the deserialized, embedded message, with an
/// additional field `@type` which contains the type URL. Example: /// additional field `@type` which contains the type URL. Example:

@ -112,7 +112,7 @@ typedef GPB_ENUM(GPBAny_FieldNumber) {
* *
* *
* JSON * JSON
* ==== *
* The JSON representation of an `Any` value uses the regular * The JSON representation of an `Any` value uses the regular
* representation of the deserialized, embedded message, with an * representation of the deserialized, embedded message, with an
* additional field `\@type` which contains the type URL. Example: * additional field `\@type` which contains the type URL. Example:

@ -53,7 +53,6 @@ use Google\Protobuf\Internal\GPBUtil;
* in the type URL, for example "foo.bar.com/x/y.z" will yield type * in the type URL, for example "foo.bar.com/x/y.z" will yield type
* name "y.z". * name "y.z".
* JSON * JSON
* ====
* The JSON representation of an `Any` value uses the regular * The JSON representation of an `Any` value uses the regular
* representation of the deserialized, embedded message, with an * representation of the deserialized, embedded message, with an
* additional field `@type` which contains the type URL. Example: * additional field `@type` which contains the type URL. Example:

@ -95,7 +95,7 @@ option objc_class_prefix = "GPB";
// //
// //
// JSON // JSON
// ==== //
// The JSON representation of an `Any` value uses the regular // The JSON representation of an `Any` value uses the regular
// representation of the deserialized, embedded message, with an // representation of the deserialized, embedded message, with an
// additional field `@type` which contains the type URL. Example: // additional field `@type` which contains the type URL. Example:

Loading…
Cancel
Save