Skip to content

Commit

Permalink
docs: fix typos in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
benpops89 committed Aug 14, 2024
1 parent 865b208 commit 46cb028
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
public class ExchangeRateHost extends AbstractPythonTap implements RunnableTask<AbstractPythonTap.Output> {
@NotEmpty
@Schema(
title = "The exchange rates currency used for convertion."
title = "The exchange rates currency used for conversion."
)
@PluginProperty(dynamic = true)
@Builder.Default
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/singer/taps/Marketo.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Marketo extends AbstractPythonTap implements RunnableTask<AbstractP
description = "The base URL contains the account id (a.k.a. Munchkin id) and is therefore unique for each " +
"Marketo subscription. Your base URL is found by logging into Marketo and navigating to the " +
"Admin > Integration > Web Services menu. " +
"It is labled as “Endpoint:” underneath the “REST API” section as shown in the following screenshots."
"It is labeled as “Endpoint:” underneath the “REST API” section as shown in the following screenshots."
)
@PluginProperty(dynamic = true)
private String endpoint;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/kestra/plugin/singer/taps/Slack.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public class Slack extends AbstractPythonTap implements RunnableTask<AbstractPyt

@Schema(
title = "Channels to Sync.",
description = "By default the tap will sync all channels it has been invited to, but this can be overriden " +
"to limit it ot specific channels. Note this needs to be channel ID, not the name, as recommended " +
description = "By default the tap will sync all channels it has been invited to, but this can be overridden " +
"to limit it to specific channels. Note this needs to be channel ID, not the name, as recommended " +
"by the Slack API. To get the ID for a channel, either use the Slack API or find it in the URL."
)
@PluginProperty(dynamic = true)
Expand Down

0 comments on commit 46cb028

Please sign in to comment.