Skip to content

Commit 5803e48

Browse files
committed
fix: correct recursive lorem kind call
1 parent c7c7810 commit 5803e48

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Package.resolved

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@
1414
"kind" : "remoteSourceControl",
1515
"location" : "https://github.com/pointfreeco/swift-macro-testing",
1616
"state" : {
17-
"revision" : "90e38eec4bf661ec0da1bbfd3ec507d0f0c05310",
18-
"version" : "0.3.0"
17+
"revision" : "5c4a1b9d7c23cd5c08ea50677d8e89080365cb00",
18+
"version" : "0.4.0"
1919
}
2020
},
2121
{
2222
"identity" : "swift-snapshot-testing",
2323
"kind" : "remoteSourceControl",
2424
"location" : "https://github.com/pointfreeco/swift-snapshot-testing",
2525
"state" : {
26-
"revision" : "5b0c434778f2c1a4c9b5ebdb8682b28e84dd69bd",
27-
"version" : "1.15.4"
26+
"revision" : "625ccca8570773dd84a34ee51a81aa2bc5a4f97a",
27+
"version" : "1.16.0"
2828
}
2929
},
3030
{
3131
"identity" : "swift-syntax",
3232
"kind" : "remoteSourceControl",
3333
"location" : "https://github.com/apple/swift-syntax.git",
3434
"state" : {
35-
"revision" : "fa8f95c2d536d6620cc2f504ebe8a6167c9fc2dd",
36-
"version" : "510.0.1"
35+
"revision" : "303e5c5c36d6a558407d364878df131c3546fad8",
36+
"version" : "510.0.2"
3737
}
3838
}
3939
],

Sources/LoremSwiftify/LoremIpsumize+Extensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public protocol LoremIpsumize {
1818

1919
extension LoremIpsumize {
2020
public static func lorem(_ kind: LoremKind? = nil) -> Self {
21-
lorem(kind)
21+
lorem()
2222
}
2323
}
2424

Sources/LoremSwiftifyClient/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct Hotel {
5050
let capacity: Capacity
5151

5252
@Lorem(.url(.image))
53-
let image: URL
53+
let image: URL?
5454

5555
@LoremSwiftify
5656
enum Capacity: Int {

0 commit comments

Comments
 (0)