Skip to content

Commit b994e0f

Browse files
authored
Fix typo (#478)
* Fix typo Change-Id: I4f2c4aa8da3214933b82785254531e2367469b99 * Address review comments Change-Id: If073a86db5824ad627ed274da3842bd40b1ce070
1 parent 0c3c22d commit b994e0f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddBiddingDataExclusion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private void runExample(
129129
// A unique name is required for every data exclusion.
130130
.setName("Data exclusion #" + getPrintableDateTime())
131131
// The CHANNEL scope applies the data exclusion to all campaigns of specific
132-
// advertising channel types. In this example, the the exclusion will only apply to
132+
// advertising channel types. In this example, the exclusion will only apply to
133133
// Search campaigns. Use the CAMPAIGN scope to instead limit the scope to specific
134134
// campaigns.
135135
.setScope(SeasonalityEventScope.CHANNEL)

google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddBiddingSeasonalityAdjustment.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private static class AddBiddingSeasonalityAdjustmentParams extends CodeSamplePar
7272
required = true,
7373
description =
7474
"The conversion rate modifier that will be applied during the adjustment interval.")
75-
private Double conversionRateModifer;
75+
private Double conversionRateModifier;
7676
}
7777

7878
public static void main(String[] args) throws IOException {
@@ -83,7 +83,7 @@ public static void main(String[] args) throws IOException {
8383
params.customerId = Long.parseLong("INSERT_CUSTOMER_ID_HERE");
8484
params.startDateTime = "INSERT_START_DATE_TIME_HERE";
8585
params.endDateTime = "INSERT_END_DATE_TIME_HERE";
86-
params.conversionRateModifer = Double.parseDouble("INSERT_CONVERSION_RATE_MODIFIER_HERE");
86+
params.conversionRateModifier = Double.parseDouble("INSERT_CONVERSION_RATE_MODIFIER_HERE");
8787
}
8888

8989
GoogleAdsClient googleAdsClient = null;
@@ -105,7 +105,7 @@ public static void main(String[] args) throws IOException {
105105
params.customerId,
106106
params.startDateTime,
107107
params.endDateTime,
108-
params.conversionRateModifer);
108+
params.conversionRateModifier);
109109
} catch (GoogleAdsException gae) {
110110
// GoogleAdsException is the base class for most exceptions thrown by an API request.
111111
// Instances of this exception have a message and a GoogleAdsFailure that contains a

0 commit comments

Comments
 (0)