Skip to content

Commit 6a3947d

Browse files
committed
fix comments
1 parent 36a89a8 commit 6a3947d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/IndiePitcherSwift/dtos.swift

+6-6
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public struct SendEmail: Codable, Sendable {
234234
/// - body: The body of the email.
235235
/// - bodyFormat: The format of the body of the email. Can be `markdown` or `html`.
236236
/// - trackEmailOpens: Whether to track email opens. Allow you to overwrite the project's global setting.
237-
/// - trackEmailLinkClicks: Whether to track email opens. Allow you to overwrite the project's global setting.
237+
/// - trackEmailLinkClicks: Whether to track when a users taps on a link in the email. Allow you to overwrite the project's global setting.
238238
public init(
239239
to: String, subject: String, body: String, bodyFormat: EmailBodyFormat,
240240
trackEmailOpens: Bool? = nil,
@@ -264,7 +264,7 @@ public struct SendEmail: Codable, Sendable {
264264
/// - Default: `nil`- Uses the project's global setting.
265265
public var trackEmailOpens: Bool?
266266

267-
/// Whether to track email opens.
267+
/// Whether to track when a users taps on a link in the email.
268268
///
269269
/// Allow you to overwrite the project's global setting.
270270
/// - Default: `nil`- Uses the project's global setting.
@@ -285,7 +285,7 @@ public struct SendEmailToContact: Codable, Sendable {
285285
/// - delaySeconds: Delay sending of this email by the amount of seconds you provide.
286286
/// - delayUntilDate: Delay sending of this email until specified date.
287287
/// - trackEmailOpens: Whether to track email opens. Allow you to overwrite the project's global setting.
288-
/// - trackEmailLinkClicks: Whether to track email opens. Allow you to overwrite the project's global setting.
288+
/// - trackEmailLinkClicks: Whether to track when a users taps on a link in the email. Allow you to overwrite the project's global setting.
289289
public init(
290290
contactEmail: String? = nil, contactEmails: [String]? = nil,
291291
subject: String, body: String, bodyFormat: EmailBodyFormat,
@@ -333,7 +333,7 @@ public struct SendEmailToContact: Codable, Sendable {
333333
/// - Default: `nil`- Uses the project's global setting.
334334
public var trackEmailOpens: Bool?
335335

336-
/// Whether to track email opens.
336+
/// Whether to track when a users taps on a link in the email.
337337
///
338338
/// Allow you to overwrite the project's global setting.
339339
/// - Default: `nil`- Uses the project's global setting.
@@ -351,7 +351,7 @@ public struct SendEmailToMailingList: Codable, Sendable {
351351
/// - delaySeconds: Delay sending of this email by the amount of seconds you provide.
352352
/// - delayUntilDate: Delay sending of this email by the amount of seconds you provide.
353353
/// - trackEmailOpens: Whether to track email opens. Allow you to overwrite the project's global setting.
354-
/// - trackEmailLinkClicks: Whether to track email opens. Allow you to overwrite the project's global setting.
354+
/// - trackEmailLinkClicks: Whether to track when a users taps on a link in the email. Allow you to overwrite the project's global setting.
355355
public init(
356356
subject: String, body: String, bodyFormat: EmailBodyFormat,
357357
list: String = "important", delaySeconds: TimeInterval? = nil,
@@ -392,7 +392,7 @@ public struct SendEmailToMailingList: Codable, Sendable {
392392
/// - Default: `nil`- Uses the project's global setting.
393393
public var trackEmailOpens: Bool?
394394

395-
/// Whether to track email opens.
395+
/// Whether to track when a users taps on a link in the email.
396396
///
397397
/// Allow you to overwrite the project's global setting.
398398
/// - Default: `nil`- Uses the project's global setting.

0 commit comments

Comments
 (0)