Skip to content

Commit ff03180

Browse files
authored
Update native-spm.md: incorrect case for target (#4254)
Lowercase 'shared' target caused error when checking Package.swift file. Needed to be 'Shared'.
1 parent d197f8b commit ff03180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/topics/native/native-spm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ call to your iOS targets description in the `shared/build.gradle.kts` file:
9898
.iOS(.v14),
9999
],
100100
products: [
101-
.library(name: "Shared", targets: ["shared"])
101+
.library(name: "Shared", targets: ["Shared"])
102102
],
103103
targets: [
104104
.binaryTarget(

0 commit comments

Comments
 (0)