From 93805e8ea2a20c937017f7caee23ee475ca7423f Mon Sep 17 00:00:00 2001 From: WcaleNieWolny <50914789+WcaleNieWolny@users.noreply.github.com> Date: Wed, 1 Oct 2025 06:33:10 +0200 Subject: [PATCH] Fix: Typo in SPM plugin migration docs --- versioned_docs/version-v7/main/ios/spm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-v7/main/ios/spm.md b/versioned_docs/version-v7/main/ios/spm.md index f7541a21..1261507e 100644 --- a/versioned_docs/version-v7/main/ios/spm.md +++ b/versioned_docs/version-v7/main/ios/spm.md @@ -130,7 +130,7 @@ This tool will do the following changes: - Add the following required things to your main swift plugin file, `[Name]Plugin.swift`: - Add Conformance to the `CAPBridgedPlugin` protocol to your class. - Add 3 variables to your class. `identifier`, `jsName`, and `pluginMethods`: - - `identifer` will correspond to the first argument to the `CAP_PLUGIN` macro. + - `identifier` will correspond to the first argument to the `CAP_PLUGIN` macro. - `jsName` will correspond to the second argument to the `CAP_PLUGIN` macro. - `pluginMethods` will be an array of the methods passed to the `CAP_PLUGIN` macro. - A `Package.swift` file will be created at the root of your plugin folder.