From f3de5117684429395ed898adbd870dca4d516162 Mon Sep 17 00:00:00 2001 From: Seyed Mojtaba Hosseini Zeidabadi Date: Mon, 14 Oct 2024 20:02:44 +0330 Subject: [PATCH 1/2] fix: a typo spelling: InlineContentBuilder --- Sources/MarkdownUI/DSL/Inlines/InlineContentBuilder.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MarkdownUI/DSL/Inlines/InlineContentBuilder.swift b/Sources/MarkdownUI/DSL/Inlines/InlineContentBuilder.swift index e2dc7cb1..ad2b9e78 100644 --- a/Sources/MarkdownUI/DSL/Inlines/InlineContentBuilder.swift +++ b/Sources/MarkdownUI/DSL/Inlines/InlineContentBuilder.swift @@ -3,7 +3,7 @@ import Foundation /// A result builder that you can use to compose Markdown inline content. /// /// You don't call the methods of the result builder directly. Instead, MarkdownUI annotates the `content` parameter of the -/// ``Paragraph``, ``Heading``, and ``TextTableColumn`` initializers with the `@InlineContentBuider` attribute, +/// ``Paragraph``, ``Heading``, and ``TextTableColumn`` initializers with the `@InlineContentBuilder` attribute, /// implicitly calling this builder for you. @resultBuilder public enum InlineContentBuilder { public static func buildBlock(_ components: InlineContentProtocol...) -> InlineContent { From 42973c81ad949b803e1ae9d95731ab489d74444e Mon Sep 17 00:00:00 2001 From: Seyed Mojtaba Hosseini Zeidabadi Date: Mon, 14 Oct 2024 20:02:56 +0330 Subject: [PATCH 2/2] fix: a typo spelling: markdown --- .../MarkdownUI/Theme/BlockStyle/ListMarkerConfiguration.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MarkdownUI/Theme/BlockStyle/ListMarkerConfiguration.swift b/Sources/MarkdownUI/Theme/BlockStyle/ListMarkerConfiguration.swift index b50e16cd..66fa4a03 100644 --- a/Sources/MarkdownUI/Theme/BlockStyle/ListMarkerConfiguration.swift +++ b/Sources/MarkdownUI/Theme/BlockStyle/ListMarkerConfiguration.swift @@ -1,6 +1,6 @@ import SwiftUI -/// The properties of a list marker in a mardown list. +/// The properties of a list marker in a markdown list. /// /// The theme ``Theme/bulletedListMarker`` and ``Theme/numberedListMarker`` /// block styles receive a `ListMarkerConfiguration` input in their `body` closure.