Skip to content

Commit

Permalink
Fix documentation typos (#354)
Browse files Browse the repository at this point in the history
* fix: a typo spelling: InlineContentBuilder

* fix: a typo spelling: markdown
  • Loading branch information
MojtabaHs authored Oct 15, 2024
1 parent 5f61335 commit 98d57f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/MarkdownUI/DSL/Inlines/InlineContentBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 98d57f0

Please sign in to comment.