Skip to content

Commit

Permalink
[Spec] Fix plurals
Browse files Browse the repository at this point in the history
  • Loading branch information
mrackwitz committed Oct 25, 2014
1 parent 4e2bf46 commit feb8db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/project/object/native_target_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ module ProjectSpecs
end
end

it 'adds a list of sources file to the target to the source build phase' do
it 'adds a list of source files to the target to the source build phase' do
ref = @project.main_group.new_file('Class.m')
@target.add_file_references([ref], '-fobjc-arc')
build_files = @target.source_build_phase.files
Expand All @@ -491,7 +491,7 @@ module ProjectSpecs
build_files.first.settings.should == { 'COMPILER_FLAGS' => '-fobjc-arc' }
end

it 'adds a list of headers file to the target header build phases' do
it 'adds a list of header files to the target header build phases' do
ref = @project.main_group.new_file('Class.h')
@target.add_file_references([ref], '-fobjc-arc')
build_files = @target.headers_build_phase.files
Expand Down

0 comments on commit feb8db2

Please sign in to comment.