Commit e294adf1 authored by Samuel Giddins's avatar Samuel Giddins

[ModuleMap] Fix spelling of specifier

parent 39d0fd4a
......@@ -67,7 +67,7 @@ module Pod
#
def generate
<<-MODULE_MAP.strip_heredoc
#{module_specificier_prefix}module #{target.product_module_name} {
#{module_specifier_prefix}module #{target.product_module_name} {
#{headers.join("\n ")}
export *
......@@ -81,7 +81,7 @@ module Pod
# The prefix to `module` to prepend in the module map.
# Ensures that only framework targets have `framework` prepended.
#
def module_specificier_prefix
def module_specifier_prefix
if target.requires_frameworks?
'framework '
else
......
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