Support DocC Xcode 13 (#591)

* wip

* finish

* revert back code snippet identation to 5

* Update Sources/ComposableArchitecture/Effect.swift

Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com>

Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com>
This commit is contained in:
Wendy Liga
2021-06-15 01:10:08 +07:00
committed by GitHub
parent c99a2f9636
commit 1a8bccc62e
20 changed files with 300 additions and 132 deletions

View File

@@ -17,7 +17,9 @@ public struct Identified<ID, Value>: Identifiable where ID: Hashable {
/// Initializes an identified value from a given value and a function that can return a hashable
/// identifier from the value.
///
/// ```swift
/// Identified(uuid, id: \.self)
/// ```
///
/// - Parameters:
/// - value: A value.
@@ -30,7 +32,9 @@ public struct Identified<ID, Value>: Identifiable where ID: Hashable {
/// Initializes an identified value from a given value and a function that can return a hashable
/// identifier from the value.
///
/// ```swift
/// Identified(uuid, id: \.self)
/// ```
///
/// - Parameters:
/// - value: A value.