Skip to content

Commit f195ebb

Browse files
docs: [language] fix docstring formatting (#8451)
- [ ] Regenerate this pull request now. Committer: @parthea PiperOrigin-RevId: 476410563 Source-Link: googleapis/googleapis@7f579ee Source-Link: https://github.com/googleapis/googleapis-gen/commit/ae0240e097a196c070e15deaae66464b42c8e014 Copy-Tag: eyJwIjoiamF2YS1sYW5ndWFnZS8uT3dsQm90LnlhbWwiLCJoIjoiYWUwMjQwZTA5N2ExOTZjMDcwZTE1ZGVhYWU2NjQ2NGI0MmM4ZTAxNCJ9
1 parent 18c0ade commit f195ebb

File tree

24 files changed

+206
-287
lines changed

24 files changed

+206
-287
lines changed

java-language/google-cloud-language-bom/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,27 +53,27 @@
5353
<dependency>
5454
<groupId>com.google.cloud</groupId>
5555
<artifactId>google-cloud-language</artifactId>
56-
<version>2.3.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-language:current} -->
56+
<version>2.3.4</version><!-- {x-version-update:google-cloud-language:current} -->
5757
</dependency>
5858
<dependency>
5959
<groupId>com.google.api.grpc</groupId>
6060
<artifactId>grpc-google-cloud-language-v1</artifactId>
61-
<version>2.3.3-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-language-v1:current} -->
61+
<version>2.3.4</version><!-- {x-version-update:grpc-google-cloud-language-v1:current} -->
6262
</dependency>
6363
<dependency>
6464
<groupId>com.google.api.grpc</groupId>
6565
<artifactId>grpc-google-cloud-language-v1beta2</artifactId>
66-
<version>0.90.3-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-language-v1beta2:current} -->
66+
<version>0.90.4</version><!-- {x-version-update:grpc-google-cloud-language-v1beta2:current} -->
6767
</dependency>
6868
<dependency>
6969
<groupId>com.google.api.grpc</groupId>
7070
<artifactId>proto-google-cloud-language-v1</artifactId>
71-
<version>2.3.3-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-language-v1:current} -->
71+
<version>2.3.4</version><!-- {x-version-update:proto-google-cloud-language-v1:current} -->
7272
</dependency>
7373
<dependency>
7474
<groupId>com.google.api.grpc</groupId>
7575
<artifactId>proto-google-cloud-language-v1beta2</artifactId>
76-
<version>0.90.3-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-language-v1beta2:current} -->
76+
<version>0.90.4</version><!-- {x-version-update:proto-google-cloud-language-v1beta2:current} -->
7777
</dependency>
7878
</dependencies>
7979
</dependencyManagement>

java-language/grpc-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/LanguageServiceGrpc.java

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -408,10 +408,8 @@ public void analyzeEntities(
408408
*
409409
*
410410
* <pre>
411-
* Finds entities, similar to
412-
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
413-
* in the text and analyzes sentiment associated with each entity and its
414-
* mentions.
411+
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
412+
* sentiment associated with each entity and its mentions.
415413
* </pre>
416414
*/
417415
public void analyzeEntitySentiment(
@@ -578,10 +576,8 @@ public void analyzeEntities(
578576
*
579577
*
580578
* <pre>
581-
* Finds entities, similar to
582-
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
583-
* in the text and analyzes sentiment associated with each entity and its
584-
* mentions.
579+
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
580+
* sentiment associated with each entity and its mentions.
585581
* </pre>
586582
*/
587583
public void analyzeEntitySentiment(
@@ -701,10 +697,8 @@ public com.google.cloud.language.v1.AnalyzeEntitiesResponse analyzeEntities(
701697
*
702698
*
703699
* <pre>
704-
* Finds entities, similar to
705-
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
706-
* in the text and analyzes sentiment associated with each entity and its
707-
* mentions.
700+
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
701+
* sentiment associated with each entity and its mentions.
708702
* </pre>
709703
*/
710704
public com.google.cloud.language.v1.AnalyzeEntitySentimentResponse analyzeEntitySentiment(
@@ -810,10 +804,8 @@ protected LanguageServiceFutureStub build(
810804
*
811805
*
812806
* <pre>
813-
* Finds entities, similar to
814-
* [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
815-
* in the text and analyzes sentiment associated with each entity and its
816-
* mentions.
807+
* Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
808+
* sentiment associated with each entity and its mentions.
817809
* </pre>
818810
*/
819811
public com.google.common.util.concurrent.ListenableFuture<

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesResponse.java

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ public com.google.cloud.language.v1.EntityOrBuilder getEntitiesOrBuilder(int ind
206206
* <pre>
207207
* The language of the text, which will be the same as the language specified
208208
* in the request or, if not specified, the automatically-detected language.
209-
* See [Document.language][google.cloud.language.v1.Document.language] field
210-
* for more details.
209+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
211210
* </pre>
212211
*
213212
* <code>string language = 2;</code>
@@ -232,8 +231,7 @@ public java.lang.String getLanguage() {
232231
* <pre>
233232
* The language of the text, which will be the same as the language specified
234233
* in the request or, if not specified, the automatically-detected language.
235-
* See [Document.language][google.cloud.language.v1.Document.language] field
236-
* for more details.
234+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
237235
* </pre>
238236
*
239237
* <code>string language = 2;</code>
@@ -984,8 +982,7 @@ public java.util.List<com.google.cloud.language.v1.Entity.Builder> getEntitiesBu
984982
* <pre>
985983
* The language of the text, which will be the same as the language specified
986984
* in the request or, if not specified, the automatically-detected language.
987-
* See [Document.language][google.cloud.language.v1.Document.language] field
988-
* for more details.
985+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
989986
* </pre>
990987
*
991988
* <code>string language = 2;</code>
@@ -1009,8 +1006,7 @@ public java.lang.String getLanguage() {
10091006
* <pre>
10101007
* The language of the text, which will be the same as the language specified
10111008
* in the request or, if not specified, the automatically-detected language.
1012-
* See [Document.language][google.cloud.language.v1.Document.language] field
1013-
* for more details.
1009+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10141010
* </pre>
10151011
*
10161012
* <code>string language = 2;</code>
@@ -1034,8 +1030,7 @@ public com.google.protobuf.ByteString getLanguageBytes() {
10341030
* <pre>
10351031
* The language of the text, which will be the same as the language specified
10361032
* in the request or, if not specified, the automatically-detected language.
1037-
* See [Document.language][google.cloud.language.v1.Document.language] field
1038-
* for more details.
1033+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10391034
* </pre>
10401035
*
10411036
* <code>string language = 2;</code>
@@ -1058,8 +1053,7 @@ public Builder setLanguage(java.lang.String value) {
10581053
* <pre>
10591054
* The language of the text, which will be the same as the language specified
10601055
* in the request or, if not specified, the automatically-detected language.
1061-
* See [Document.language][google.cloud.language.v1.Document.language] field
1062-
* for more details.
1056+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10631057
* </pre>
10641058
*
10651059
* <code>string language = 2;</code>
@@ -1078,8 +1072,7 @@ public Builder clearLanguage() {
10781072
* <pre>
10791073
* The language of the text, which will be the same as the language specified
10801074
* in the request or, if not specified, the automatically-detected language.
1081-
* See [Document.language][google.cloud.language.v1.Document.language] field
1082-
* for more details.
1075+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10831076
* </pre>
10841077
*
10851078
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitiesResponseOrBuilder.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ public interface AnalyzeEntitiesResponseOrBuilder
8080
* <pre>
8181
* The language of the text, which will be the same as the language specified
8282
* in the request or, if not specified, the automatically-detected language.
83-
* See [Document.language][google.cloud.language.v1.Document.language] field
84-
* for more details.
83+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
8584
* </pre>
8685
*
8786
* <code>string language = 2;</code>
@@ -95,8 +94,7 @@ public interface AnalyzeEntitiesResponseOrBuilder
9594
* <pre>
9695
* The language of the text, which will be the same as the language specified
9796
* in the request or, if not specified, the automatically-detected language.
98-
* See [Document.language][google.cloud.language.v1.Document.language] field
99-
* for more details.
97+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10098
* </pre>
10199
*
102100
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentResponse.java

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ public com.google.cloud.language.v1.EntityOrBuilder getEntitiesOrBuilder(int ind
207207
* <pre>
208208
* The language of the text, which will be the same as the language specified
209209
* in the request or, if not specified, the automatically-detected language.
210-
* See [Document.language][google.cloud.language.v1.Document.language] field
211-
* for more details.
210+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
212211
* </pre>
213212
*
214213
* <code>string language = 2;</code>
@@ -233,8 +232,7 @@ public java.lang.String getLanguage() {
233232
* <pre>
234233
* The language of the text, which will be the same as the language specified
235234
* in the request or, if not specified, the automatically-detected language.
236-
* See [Document.language][google.cloud.language.v1.Document.language] field
237-
* for more details.
235+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
238236
* </pre>
239237
*
240238
* <code>string language = 2;</code>
@@ -986,8 +984,7 @@ public java.util.List<com.google.cloud.language.v1.Entity.Builder> getEntitiesBu
986984
* <pre>
987985
* The language of the text, which will be the same as the language specified
988986
* in the request or, if not specified, the automatically-detected language.
989-
* See [Document.language][google.cloud.language.v1.Document.language] field
990-
* for more details.
987+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
991988
* </pre>
992989
*
993990
* <code>string language = 2;</code>
@@ -1011,8 +1008,7 @@ public java.lang.String getLanguage() {
10111008
* <pre>
10121009
* The language of the text, which will be the same as the language specified
10131010
* in the request or, if not specified, the automatically-detected language.
1014-
* See [Document.language][google.cloud.language.v1.Document.language] field
1015-
* for more details.
1011+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10161012
* </pre>
10171013
*
10181014
* <code>string language = 2;</code>
@@ -1036,8 +1032,7 @@ public com.google.protobuf.ByteString getLanguageBytes() {
10361032
* <pre>
10371033
* The language of the text, which will be the same as the language specified
10381034
* in the request or, if not specified, the automatically-detected language.
1039-
* See [Document.language][google.cloud.language.v1.Document.language] field
1040-
* for more details.
1035+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10411036
* </pre>
10421037
*
10431038
* <code>string language = 2;</code>
@@ -1060,8 +1055,7 @@ public Builder setLanguage(java.lang.String value) {
10601055
* <pre>
10611056
* The language of the text, which will be the same as the language specified
10621057
* in the request or, if not specified, the automatically-detected language.
1063-
* See [Document.language][google.cloud.language.v1.Document.language] field
1064-
* for more details.
1058+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10651059
* </pre>
10661060
*
10671061
* <code>string language = 2;</code>
@@ -1080,8 +1074,7 @@ public Builder clearLanguage() {
10801074
* <pre>
10811075
* The language of the text, which will be the same as the language specified
10821076
* in the request or, if not specified, the automatically-detected language.
1083-
* See [Document.language][google.cloud.language.v1.Document.language] field
1084-
* for more details.
1077+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10851078
* </pre>
10861079
*
10871080
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeEntitySentimentResponseOrBuilder.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ public interface AnalyzeEntitySentimentResponseOrBuilder
8080
* <pre>
8181
* The language of the text, which will be the same as the language specified
8282
* in the request or, if not specified, the automatically-detected language.
83-
* See [Document.language][google.cloud.language.v1.Document.language] field
84-
* for more details.
83+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
8584
* </pre>
8685
*
8786
* <code>string language = 2;</code>
@@ -95,8 +94,7 @@ public interface AnalyzeEntitySentimentResponseOrBuilder
9594
* <pre>
9695
* The language of the text, which will be the same as the language specified
9796
* in the request or, if not specified, the automatically-detected language.
98-
* See [Document.language][google.cloud.language.v1.Document.language] field
99-
* for more details.
97+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10098
* </pre>
10199
*
102100
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentResponse.java

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,7 @@ public com.google.cloud.language.v1.SentimentOrBuilder getDocumentSentimentOrBui
201201
* <pre>
202202
* The language of the text, which will be the same as the language specified
203203
* in the request or, if not specified, the automatically-detected language.
204-
* See [Document.language][google.cloud.language.v1.Document.language] field
205-
* for more details.
204+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
206205
* </pre>
207206
*
208207
* <code>string language = 2;</code>
@@ -227,8 +226,7 @@ public java.lang.String getLanguage() {
227226
* <pre>
228227
* The language of the text, which will be the same as the language specified
229228
* in the request or, if not specified, the automatically-detected language.
230-
* See [Document.language][google.cloud.language.v1.Document.language] field
231-
* for more details.
229+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
232230
* </pre>
233231
*
234232
* <code>string language = 2;</code>
@@ -915,8 +913,7 @@ public com.google.cloud.language.v1.SentimentOrBuilder getDocumentSentimentOrBui
915913
* <pre>
916914
* The language of the text, which will be the same as the language specified
917915
* in the request or, if not specified, the automatically-detected language.
918-
* See [Document.language][google.cloud.language.v1.Document.language] field
919-
* for more details.
916+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
920917
* </pre>
921918
*
922919
* <code>string language = 2;</code>
@@ -940,8 +937,7 @@ public java.lang.String getLanguage() {
940937
* <pre>
941938
* The language of the text, which will be the same as the language specified
942939
* in the request or, if not specified, the automatically-detected language.
943-
* See [Document.language][google.cloud.language.v1.Document.language] field
944-
* for more details.
940+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
945941
* </pre>
946942
*
947943
* <code>string language = 2;</code>
@@ -965,8 +961,7 @@ public com.google.protobuf.ByteString getLanguageBytes() {
965961
* <pre>
966962
* The language of the text, which will be the same as the language specified
967963
* in the request or, if not specified, the automatically-detected language.
968-
* See [Document.language][google.cloud.language.v1.Document.language] field
969-
* for more details.
964+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
970965
* </pre>
971966
*
972967
* <code>string language = 2;</code>
@@ -989,8 +984,7 @@ public Builder setLanguage(java.lang.String value) {
989984
* <pre>
990985
* The language of the text, which will be the same as the language specified
991986
* in the request or, if not specified, the automatically-detected language.
992-
* See [Document.language][google.cloud.language.v1.Document.language] field
993-
* for more details.
987+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
994988
* </pre>
995989
*
996990
* <code>string language = 2;</code>
@@ -1009,8 +1003,7 @@ public Builder clearLanguage() {
10091003
* <pre>
10101004
* The language of the text, which will be the same as the language specified
10111005
* in the request or, if not specified, the automatically-detected language.
1012-
* See [Document.language][google.cloud.language.v1.Document.language] field
1013-
* for more details.
1006+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
10141007
* </pre>
10151008
*
10161009
* <code>string language = 2;</code>

java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/AnalyzeSentimentResponseOrBuilder.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ public interface AnalyzeSentimentResponseOrBuilder
6464
* <pre>
6565
* The language of the text, which will be the same as the language specified
6666
* in the request or, if not specified, the automatically-detected language.
67-
* See [Document.language][google.cloud.language.v1.Document.language] field
68-
* for more details.
67+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
6968
* </pre>
7069
*
7170
* <code>string language = 2;</code>
@@ -79,8 +78,7 @@ public interface AnalyzeSentimentResponseOrBuilder
7978
* <pre>
8079
* The language of the text, which will be the same as the language specified
8180
* in the request or, if not specified, the automatically-detected language.
82-
* See [Document.language][google.cloud.language.v1.Document.language] field
83-
* for more details.
81+
* See [Document.language][google.cloud.language.v1.Document.language] field for more details.
8482
* </pre>
8583
*
8684
* <code>string language = 2;</code>

0 commit comments

Comments
 (0)