Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

fix minor typo #4629

Merged
merged 2 commits into from
Jan 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions COCOAPODS.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ You can add dependencies on a Pod library from `zip`, `tar`, or `jar` archive wi
1. Specify the name of a Pod library in the `pod()` function.
In the configuration block specify the path to the archive: use the `url()` function with an arbitrary HTTP address in the `source` parameter value.

Additionally, you can specify the boolean `flatten` parameter as a second argument for the `url()` function
Additionally, you can specify the boolean `flatten` parameter as a second argument for the `url()` function.
This parameter indicates that all the Pod files are located in the root directory of the archive.

2. Specify the minimum deployment target version for the Pod library.
Expand Down Expand Up @@ -430,7 +430,15 @@ You can add dependencies on a Pod library from a custom Podspec repository with
4. Re-import the project.

> To work correctly with Xcode, you should specify the location of specs at the beginning of your Podfile.
> For example, `source 'https://github.com/Kotlin/kotlin-cocoapods-spec.git'`
> For example:
>
> <div class="sample" markdown="1" theme="idea" data-highlight-only>
>
> ```ruby
> source 'https://github.com/Kotlin/kotlin-cocoapods-spec.git'
> ```
>
> </div>
>
> You should also specify the path to the Podspec in your Podfile.
> For example:
Expand Down
2 changes: 1 addition & 1 deletion GRADLE_PLUGIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ kotlin.sourceSets {
// Configure all native platform sources sets to use it as a common one.
linuxX64Main.dependsOn(nativeMain)
macosX64Main.dependsOn(nativeMain)
//...
// ...
}
```

Expand Down
2 changes: 1 addition & 1 deletion LIBRARIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ directory structure, with the following layout:
- foo/
- $component_name/
- ir/
- Seriaized Kotlin IR.
- Serialized Kotlin IR.
- targets/
- $platform/
- kotlin/
Expand Down