Commit abc7126d authored by Marius Rackwitz's avatar Marius Rackwitz

[Doc] Minor fixes

parent 2a673e23
module Pod module Pod
module Generator module Generator
class EmbedFrameworksScript class EmbedFrameworksScript
# @return [Hash{String, Array{String}] Multiple lists of frameworks per # @return [Hash{String => Array<String>}] Multiple lists of frameworks per
# configuration. # configuration.
# #
attr_reader :frameworks_by_config attr_reader :frameworks_by_config
# @param [Hash{String, Array{String}] frameworks_by_config # @param [Hash{String => Array<String>] frameworks_by_config
# @see #frameworks_by_config # @see #frameworks_by_config
# #
def initialize(frameworks_by_config) def initialize(frameworks_by_config)
......
...@@ -84,7 +84,7 @@ module Pod ...@@ -84,7 +84,7 @@ module Pod
# from the integrating target by all sort of imports, which are: # from the integrating target by all sort of imports, which are:
# - `#import <…>` # - `#import <…>`
# - `#import "…"` # - `#import "…"`
# - `@import …` / `@import …;` # - `@import …;` / `import …`
# #
def generate_settings_to_import_pod_targets def generate_settings_to_import_pod_targets
if target.requires_frameworks? if target.requires_frameworks?
......
...@@ -322,7 +322,7 @@ module Pod ...@@ -322,7 +322,7 @@ module Pod
end end
end end
# Finds the names of the Pods on which the given target _transitively_ # Finds the names of the Pods upon which the given target _transitively_
# depends. # depends.
# #
# @note: This is implemented in the analyzer, because we don't have to # @note: This is implemented in the analyzer, because we don't have to
......
...@@ -6,8 +6,8 @@ module Pod ...@@ -6,8 +6,8 @@ module Pod
# #
attr_accessor :podfile_state attr_accessor :podfile_state
# @return [Hash{TargetDefinition => Array<Spec>}] the specifications # @return [Hash{TargetDefinition => Array<Specification>}] the
# grouped by target. # specifications grouped by target.
# #
attr_accessor :specs_by_target attr_accessor :specs_by_target
......
...@@ -12,7 +12,7 @@ module Pod ...@@ -12,7 +12,7 @@ module Pod
# #
attr_accessor :project_path attr_accessor :project_path
# @return [Array<String>] the uuid of the user'S targets # @return [Array<String>] the uuid of the user's targets
# #
attr_accessor :project_target_uuids attr_accessor :project_target_uuids
......
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