Commit b3a77a6f authored by Fabio Pelosin's avatar Fabio Pelosin

[PrefixHeader] Style fixes

parent 2ef0db19
...@@ -9,18 +9,18 @@ module Pod ...@@ -9,18 +9,18 @@ module Pod
# #
class PrefixHeader class PrefixHeader
# @return [Platform] the platform for which the prefix header will be # @return [Array<FileAccessor>] The file accessors for which to generate
# generated. # the prefix header.
# #
attr_reader :file_accessors attr_reader :file_accessors
attr_reader :platform
# @return [Array<LocalPod>] the LocalPod for the target for which the # @return [Platform] the platform for which the prefix header will be
# prefix header needs to be generated. # generated.
# #
# attr_reader :consumers attr_reader :platform
# @return [Array<String>] any header to import (with quotes). # @return [Array<String>] The list of the headers to import (with
# quotes).
# #
attr_reader :imports attr_reader :imports
...@@ -40,12 +40,14 @@ module Pod ...@@ -40,12 +40,14 @@ module Pod
# added to the top of the prefix header. For OS X `Cocoa/Cocoa.h` # added to the top of the prefix header. For OS X `Cocoa/Cocoa.h`
# is imported. # is imported.
# #
# @note Only unique prefix_header_contents are added to the prefix header. # @note Only unique prefix_header_contents are added to the prefix
# header.
# #
# @return [String] # @return [String]
# #
# @todo Subspecs can specify prefix header information too. # @todo Subspecs can specify prefix header information too.
# @todo Check to see if we have a similar duplication issue with file_accessor.prefix_header. # @todo Check to see if we have a similar duplication issue with
# file_accessor.prefix_header.
# #
def generate def generate
result = "#ifdef __OBJC__\n" result = "#ifdef __OBJC__\n"
......
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