Commit 12724f27 authored by Marius Rackwitz's avatar Marius Rackwitz

[Doc] Improved wording / fixed typos

parent aa0d3ede
...@@ -2,7 +2,7 @@ module Pod ...@@ -2,7 +2,7 @@ module Pod
module Generator module Generator
class EmbedFrameworksScript class EmbedFrameworksScript
# @return [TargetDefinition] The target definition, whose label will be # @return [TargetDefinition] The target definition, whose label will be
# used to locate the target specific build products. # used to locate the target-specific build products.
# #
attr_reader :target_definition attr_reader :target_definition
......
module Pod module Pod
module Generator module Generator
# Generates the LLVM module map files. A module map file is generated for # Generates LLVM module map files. A module map file is generated for each
# each Pod and for each Pod target definition, that requires to be built as # Pod and for each Pod target definition, that is built as framework. It
# framework. It specifies a different umbrella header then usual to avoid # specifies a different umbrella header then usual to avoid name conflicts
# name conflicts with existing headers of the podspec. # with existing headers of the podspec.
# #
class ModuleMap class ModuleMap
# @return [Target] the target represented by this Info.plist. # @return [Target] the target represented by this Info.plist.
......
...@@ -84,7 +84,7 @@ module Pod ...@@ -84,7 +84,7 @@ module Pod
pod_targets.each do |pod_target| pod_targets.each do |pod_target|
XCConfigHelper.add_settings_for_file_accessors_of_target(pod_target, @xcconfig) XCConfigHelper.add_settings_for_file_accessors_of_target(pod_target, @xcconfig)
# Add pod framework to list of frameworks / libraries that are # Add pod target to list of frameworks / libraries that are
# linked with the user’s project. # linked with the user’s project.
next unless pod_target.should_build? next unless pod_target.should_build?
if pod_target.requires_framework? if pod_target.requires_framework?
......
...@@ -27,7 +27,7 @@ module Pod ...@@ -27,7 +27,7 @@ module Pod
end end
# @param [Platform] platform # @param [Platform] platform
# indicate for which platform the header search paths should be # the platform for which the header search paths should be
# returned # returned
# #
# @return [Array<String>] All the search paths of the header directory in # @return [Array<String>] All the search paths of the header directory in
......
...@@ -88,7 +88,7 @@ module Pod ...@@ -88,7 +88,7 @@ module Pod
#-------------------------------------------------------------------------# #-------------------------------------------------------------------------#
# @return [Boolean] whether the generated target need to be implemented # @return [Boolean] whether the generated target needs to be implemented
# as a framework # as a framework
# #
# @note This applies either if Swift was used by the host, which was checked # @note This applies either if Swift was used by the host, which was checked
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment