Skip to content

Commit 18d4e9b

Browse files
authored
chore: fix minor typos in README and pom templates (#1479)
1 parent 04cc5e8 commit 18d4e9b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

synthtool/gcp/templates/java_library/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Java idiomatic client for [{{metadata['repo']['name_pretty']}}][product-docs].
2121
## Quickstart
2222

2323
{% if 'snippets' in metadata and metadata['snippets'][metadata['repo']['api_shortname'] + '_install_with_bom'] -%}
24-
If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
24+
If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
2525

2626
```xml
2727
{{ metadata['snippets'][metadata['repo']['api_shortname'] + '_install_with_bom'] }}
@@ -45,7 +45,7 @@ If you are using Maven, add this to your pom.xml file:
4545
```
4646

4747
{% if 'snippets' in metadata and metadata['snippets'][metadata['repo']['api_shortname'] + '_install_with_bom'] -%}
48-
If you are using Gradle 5.x or later, add this to your dependencies
48+
If you are using Gradle 5.x or later, add this to your dependencies:
4949

5050
```Groovy
5151
implementation platform('com.google.cloud:libraries-bom:{{metadata['latest_bom_version']}}')
@@ -54,13 +54,13 @@ implementation '{{ group_id }}:{{ artifact_id }}'
5454
```
5555
{% endif -%}
5656

57-
If you are using Gradle without BOM, add this to your dependencies
57+
If you are using Gradle without BOM, add this to your dependencies:
5858

5959
```Groovy
6060
implementation '{{ group_id }}:{{ artifact_id }}:{{ metadata['latest_version'] }}'
6161
```
6262

63-
If you are using SBT, add this to your dependencies
63+
If you are using SBT, add this to your dependencies:
6464

6565
```Scala
6666
libraryDependencies += "{{ group_id }}" % "{{ artifact_id }}" % "{{ metadata['latest_version'] }}"

synthtool/gcp/templates/java_library/samples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<!--
1515
The parent pom defines common style checks and testing strategies for our samples.
16-
Removing or replacing it should not affect the execution of the samples in anyway.
16+
Removing or replacing it should not affect the execution of the samples in any way.
1717
-->
1818
<parent>
1919
<groupId>com.google.cloud.samples</groupId>

synthtool/gcp/templates/java_library/samples/snapshot/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<!--
1313
The parent pom defines common style checks and testing strategies for our samples.
14-
Removing or replacing it should not affect the execution of the samples in anyway.
14+
Removing or replacing it should not affect the execution of the samples in any way.
1515
-->
1616
<parent>
1717
<groupId>com.google.cloud.samples</groupId>

synthtool/gcp/templates/java_library/samples/snippets/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<!--
1313
The parent pom defines common style checks and testing strategies for our samples.
14-
Removing or replacing it should not affect the execution of the samples in anyway.
14+
Removing or replacing it should not affect the execution of the samples in any way.
1515
-->
1616
<parent>
1717
<groupId>com.google.cloud.samples</groupId>

0 commit comments

Comments
 (0)